29 lines
435 B
Sass
29 lines
435 B
Sass
@import "@/common/styles/colors"
|
|
|
|
body
|
|
margin: 0
|
|
background-color: $background
|
|
|
|
*
|
|
font-family: 'Roboto', sans-serif
|
|
|
|
.text-aqua
|
|
color: $aqua
|
|
|
|
.main-wrapper
|
|
margin-top: 1%
|
|
margin-left: 20%
|
|
margin-right: 20%
|
|
|
|
::-webkit-scrollbar
|
|
width: 10px
|
|
|
|
::-webkit-scrollbar-track
|
|
background: $background
|
|
|
|
::-webkit-scrollbar-thumb
|
|
background: $black
|
|
border-radius: 5px
|
|
|
|
::-webkit-scrollbar-thumb:hover
|
|
background: $dark-black |