35 lines
508 B
SCSS
Executable File
35 lines
508 B
SCSS
Executable File
|
|
@use "vars" as *;
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Lato', sans-serif;
|
|
}
|
|
|
|
.center-flex{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.center-flex-row{
|
|
@extend .center-flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-spacer{
|
|
flex-grow: 1;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
margin:3px;
|
|
background: #333;
|
|
cursor: pointer;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #757575;
|
|
border-radius: 8px;
|
|
} |