Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG-nightly.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions src/app/chat/UserCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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);
}
Expand Down