remove bottom content

This commit is contained in:
geoffrey45
2022-08-17 20:16:22 +03:00
parent 703b3cf240
commit a7dc2fa6bd
14 changed files with 94 additions and 107 deletions
+8 -6
View File
@@ -10,17 +10,19 @@
@content;
}
}
@mixin tablet-portrait {
@media (max-width: 810) {
@content;
}
}
@mixin tablet-landscape {
@media (max-width: 1080px) {
@content;
}
}
@mixin tablet-portrait {
@media (max-width: 810) {
@content;
}
}
@mixin for-desktop-down {
@media (max-width: 1600px) {
@content;
@@ -31,4 +33,4 @@
@media (min-width: 1800px) {
@content;
}
}
}