fix: popout chat styles

This commit is contained in:
Alejandro Gomez
2023-06-30 12:17:26 +02:00
parent b986f737d4
commit e0424150c3
2 changed files with 13 additions and 25 deletions

View File

@ -1,14 +1,18 @@
.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;
}

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;