Merge pull request 'fix: popout chat styles' (#14) from verbiricha/stream:fix/popout into main

Reviewed-on: Kieran/stream#14
This commit is contained in:
Kieran 2023-06-30 10:44:51 +00:00
commit 17d1a11c30
2 changed files with 13 additions and 25 deletions

View File

@ -1,18 +1,22 @@
.popout-chat {
grid-area: main-content;
display: grid;
grid-template-areas:
"main-content";
grid-template-rows: 1fr;
grid-template-columns: 1fr;
height: 100vh;
gap: 0;
}
.popout-chat .live-chat {
padding: 8px 16px;
width: 100vw;
height: calc(100vh - 32px);
margin-left: 0;
}
.popout-chat .live-chat {
height: calc(100vh);
padding: 10px;
border: unset;
border-radius: unset;
border: unset;
border-radius: unset;
}
.popout-chat .live-chat .messages {
overflow: hidden;
overflow: hidden;
}

View File

@ -154,22 +154,6 @@ button span.hide-on-mobile {
}
}
.popout-chat {
display: grid;
grid-template-areas:
"main-content";
grid-template-rows: 1fr;
grid-template-columns: 1fr;
height: 100vh;
gap: 0;
}
.popout-chat .live-chat {
padding: 8px 16px;
height: 100vh;
width: 100vw;
}
.dialog-overlay {
background-color: rgba(0, 0, 0, 0.8);
position: fixed;