styles: extract components.scss

This commit is contained in:
He4eT 2023-06-05 01:48:39 +03:00 committed by Alexey
commit 36efea1d09
3 changed files with 75 additions and 68 deletions

52
src/style/base.scss Normal file
View file

@ -0,0 +1,52 @@
/* Layout */
html, body {
margin: 0;
height: 100%;
font-family: 'Open Sans', sans-serif;
font-size: 18px;
line-height: 27px;
/* To prevent the white flash */
background: #000000;
}
#root {
height: 100%;
}
.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);
/* Fix for Jumping Scrollbar Issue */
padding-left: calc(100vw - 100%);
}
.app > main {
flex: 1 1 auto;
height: 100%;
width: 100%;
box-sizing: border-box;
}
@media (min-width: 800px) {
.app > main {
margin: 5vh 0;
max-width: 800px;
}
}
.status {
padding: var(--inner-padding);
word-break: break-word;
}