From bf717c7a1c998712df1a644d3e7a6a131420291e Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Fri, 11 Feb 2022 13:07:40 +0000
Subject: [PATCH] refactor: footer
---
assets/scss/partials/components/_footer.scss | 27 ++++++++++++++++-----------
1 files changed, 16 insertions(+), 11 deletions(-)
diff --git a/assets/scss/partials/components/_footer.scss b/assets/scss/partials/components/_footer.scss
index 63e6fed..44ef7e6 100644
--- a/assets/scss/partials/components/_footer.scss
+++ b/assets/scss/partials/components/_footer.scss
@@ -20,18 +20,23 @@
content: '\00B7';
padding: 4px;
}
-}
-@media screen and (min-width: 961px), print {
- .footer {
- &--base {
+
+ &__sidebar {
+ display: none;
+ @include desktop{
+ display: inline-block;
+ }
+ @include print{
+ display: inline-block;
+ }
+ }
+
+ &__base {
+ @include desktop{
+ display: none;
+ }
+ @include print{
display: none;
}
}
}
-@media screen and (max-width: 960px) {
- .footer {
- &--sidebar {
- display: none;
- }
- }
-}
\ No newline at end of file
--
Gitblit v1.10.0