flasky flasky

This commit is contained in:
Michał Gdula 2022-12-28 00:46:08 +00:00
parent e6e2714a95
commit 40baf07fe1
36 changed files with 1035 additions and 1365 deletions

View file

@ -0,0 +1,32 @@
* {
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;
}