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:
@ -1,18 +1,22 @@
|
|||||||
.popout-chat {
|
.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 {
|
.popout-chat .live-chat {
|
||||||
|
padding: 8px 16px;
|
||||||
|
width: 100vw;
|
||||||
|
height: calc(100vh - 32px);
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
border: unset;
|
||||||
|
border-radius: unset;
|
||||||
.popout-chat .live-chat {
|
|
||||||
height: calc(100vh);
|
|
||||||
padding: 10px;
|
|
||||||
border: unset;
|
|
||||||
border-radius: unset;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.popout-chat .live-chat .messages {
|
.popout-chat .live-chat .messages {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
@ -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 {
|
.dialog-overlay {
|
||||||
background-color: rgba(0, 0, 0, 0.8);
|
background-color: rgba(0, 0, 0, 0.8);
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
Reference in New Issue
Block a user