style: added adaption to mobile & block animations

This commit is contained in:
Ignat Karelov
2026-04-23 18:01:48 +03:00
parent acb1eb5ec5
commit 64d8a24f58
7 changed files with 1476 additions and 663 deletions

View File

@@ -12,3 +12,9 @@
border-radius: $radius-md;
box-shadow: $shadow-card;
}
@mixin respond($breakpoint) {
@media only screen and (max-width: $breakpoint) {
@content;
}
}