From 13383f64edc1fc620bd17670a5505ef63e8dd1cd Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Sat, 12 Feb 2022 11:25:17 +0000
Subject: [PATCH] refactor: media queries
---
assets/scss/partials/components/_footer.scss | 10 ++--------
1 files changed, 2 insertions(+), 8 deletions(-)
diff --git a/assets/scss/partials/components/_footer.scss b/assets/scss/partials/components/_footer.scss
index 44ef7e6..1c03581 100644
--- a/assets/scss/partials/components/_footer.scss
+++ b/assets/scss/partials/components/_footer.scss
@@ -23,19 +23,13 @@
&__sidebar {
display: none;
- @include desktop{
- display: inline-block;
- }
- @include print{
+ @include desktop_and_print{
display: inline-block;
}
}
&__base {
- @include desktop{
- display: none;
- }
- @include print{
+ @include desktop_and_print{
display: none;
}
}
--
Gitblit v1.10.0