elseifplayer/src/style/App.module.scss

49 lines
829 B
SCSS

.app {
min-height: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: var(--main-color);
background-color: var(--bg-color);
/* */
&.home, &.games, &.themes {
padding: var(--inner-padding);
/* Fix for Jumping Scrollbar Issue */
@media (min-width: 800px) {
padding-left: calc(100vw - 100% + var(--inner-padding));
}
}
/* Player view */
&.play, &.focus {
height: 100%;
max-height: 100dvh;
@media (min-width: 800px) {
& > main {
max-height: 90%;
margin: auto;
}
}
}
/* */
& > main {
flex: 1 1 auto;
height: 100%;
width: 100%;
box-sizing: border-box;
@media (min-width: 800px) {
margin: 5vh 0;
max-width: 800px;
}
}
}