Initial
All checks were successful
Deploy / build (push) Successful in 49s

This commit is contained in:
alsaze
2025-11-19 20:49:25 +03:00
commit 3d975d6884
36 changed files with 27229 additions and 0 deletions

8
assets/scss/main.scss Normal file
View File

@@ -0,0 +1,8 @@
* {
scrollbar-width: thin;
scrollbar-color: rgba(128, 128, 128, 0.5) transparent;
}
body {
-ms-overflow-style: -ms-autohiding-scrollbar;
}

5
assets/scss/mixins.scss Normal file
View File

@@ -0,0 +1,5 @@
@mixin mobile {
@media (max-width: 768px) {
@content;
}
}