feat: added web
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
Ignat Karelov
2026-06-02 17:45:51 +03:00
parent 709df7eddc
commit 0719b11093
39 changed files with 12450 additions and 0 deletions

13
assets/scss/_mixins.scss Normal file
View File

@@ -0,0 +1,13 @@
@mixin hover-supported {
@media (hover: hover) and (pointer: fine) {
&:hover {
@content;
}
}
}
@mixin media-down($width) {
@media (max-width: $width) {
@content;
}
}