d12712a107
added recoil value isMobile to determine which chat to display and style. #1978 changed the player to actually span across the viewport without the black borders around it.
73 lines
1.0 KiB
SCSS
73 lines
1.0 KiB
SCSS
.root {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
&.mobile {
|
|
display: block;
|
|
// height: calc(100vh - 64px);
|
|
// overflow-y: hidden;
|
|
}
|
|
}
|
|
|
|
.mobileChat {
|
|
position: relative;
|
|
display: block;
|
|
// top: 0px;
|
|
width: 100%;
|
|
[data-virtuoso-scroller] {
|
|
height: 500px;
|
|
}
|
|
}
|
|
|
|
.leftCol {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.streamInfo {
|
|
position: relative;
|
|
display: grid;
|
|
}
|
|
|
|
.buttonsLogoTitleSection {
|
|
margin-left: 1.5vw;
|
|
margin-right: 1.5vw;
|
|
}
|
|
|
|
.pageContentSection {
|
|
background-color: var(--theme-background-secondary);
|
|
border-radius: var(--theme-rounded-corners);
|
|
margin: 1vw;
|
|
padding: 1vw;
|
|
width: 100%;
|
|
}
|
|
|
|
.logoTitleSection {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.titleSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 20px;
|
|
margin-left: 10px;
|
|
|
|
.title {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
color: var(--theme-text-primary);
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1.6vw;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.loadingSpinner {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 50%;
|
|
z-index: 999999;
|
|
}
|
|
|