mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-01-28 16:48:25 +00:00
32 lines
418 B
SCSS
32 lines
418 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
|
|
font-family: $font-header;
|
|
font-weight: 400;
|
|
}
|
|
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
background-color: $black;
|
|
color: $white;
|
|
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
min-height: 100vh;
|
|
|
|
background-color: $black;
|
|
|
|
scroll-behavior: smooth;
|
|
} |