diff --git a/CHANGELOG-nightly.md b/CHANGELOG-nightly.md index a5ea12bc..1d7bb244 100644 --- a/CHANGELOG-nightly.md +++ b/CHANGELOG-nightly.md @@ -1,3 +1,7 @@ +### 3.1.10.2000 + +- Fixed an issue with the card identity cover not taking full height + ### 3.1.10.1000 - Replaced Unicode tag that gets appended for duplicate message check to not have it dropped by Twitch anymore 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); }