refactor(styles): separated fonts and responsiveness to scss files; made global reference only once

This commit is contained in:
2026-03-03 02:29:27 +01:00
parent 8698a53caf
commit 22b8509ebe
25 changed files with 278 additions and 144 deletions
+20
View File
@@ -0,0 +1,20 @@
$breakpointMd: 960px;
$breakpointSm: 550px;
@mixin smallScreen() {
@media only screen and (max-width: $breakpointSm) {
@content;
}
}
@mixin midScreen() {
@media only screen and (max-width: $breakpointMd) {
@content;
}
}
@mixin midScreenLandscape() {
@media only screen and (orientation: landscape) and (max-device-height: $breakpointMd) {
@content;
}
}