From 200d59ca5996f43b10387adaea999565d5b38591 Mon Sep 17 00:00:00 2001 From: "Sebastien C." Date: Sun, 24 Aug 2025 14:10:26 -0400 Subject: [PATCH 1/2] FIX - before cover on profile card identity to take all available height --- src/app/chat/UserCard.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/chat/UserCard.vue b/src/app/chat/UserCard.vue index f913c1bb..58a1c705 100644 --- a/src/app/chat/UserCard.vue +++ b/src/app/chat/UserCard.vue @@ -659,6 +659,7 @@ main.seventv-user-card-container { .seventv-user-card-identity { cursor: move; display: grid; + position: relative; grid-template-columns: max-content 1fr; grid-template-rows: auto auto 1fr; grid-auto-flow: row; @@ -675,9 +676,9 @@ main.seventv-user-card-container { &::before { content: " "; - position: fixed; + position: absolute; width: $card-width; - height: 8rem; + height: 100%; opacity: 0.68; background-color: var(--seventv-background-transparent-1); } From 594a6171a329c8dc7c82c374e7e4b411266bd2c2 Mon Sep 17 00:00:00 2001 From: "Sebastien C." Date: Sun, 24 Aug 2025 14:21:52 -0400 Subject: [PATCH 2/2] ADD - changelog --- CHANGELOG-nightly.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-nightly.md b/CHANGELOG-nightly.md index 5220f7e9..d9bf69c7 100644 --- a/CHANGELOG-nightly.md +++ b/CHANGELOG-nightly.md @@ -1,3 +1,7 @@ +### 3.1.10.1000 + +- Fixed an issue with the card identity cover not taking full height + ### 3.1.9.1000 - Remove hosted-site functionality