mirror of
https://github.com/owncast/owncast.git
synced 2024-11-28 19:19:06 +03:00
32c3f6a9b6
* fix: #2668 Page Vertical Spacing Issues * Update test to reflect mobile work * chore: refactor action buttons --------- Co-authored-by: thisProjects <wibbet@wobbet.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com>
29 lines
568 B
SCSS
29 lines
568 B
SCSS
@import '../../../styles/mixins.scss';
|
|
|
|
.root {
|
|
background-color: var(--theme-color-components-chat-background);
|
|
@include screen(desktop) {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
top: 69px;
|
|
z-index:100;
|
|
}
|
|
|
|
@media screen and (max-width: 1120px) and (min-width: 768px) {
|
|
top: 65px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
First div is .ant-layout-sider-children
|
|
Only way to target it apparently
|
|
*/
|
|
.root > div {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
-moz-box-flex: 1 !important;
|
|
flex-grow: 1 !important;
|
|
height: 100% !important;
|
|
width: 100%!important;
|
|
}
|