From 14af37f0df41a0abcd691bc3d2c759f74e5db42e Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Wed, 16 Mar 2022 19:08:06 +0000
Subject: [PATCH] fix: refactor sidebar SCSS
---
assets/scss/partials/components/_wrapper.scss | 20 ++++++++++----------
1 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/assets/scss/partials/components/_wrapper.scss b/assets/scss/partials/components/_wrapper.scss
index 498149b..fef6749 100644
--- a/assets/scss/partials/components/_wrapper.scss
+++ b/assets/scss/partials/components/_wrapper.scss
@@ -13,23 +13,23 @@
&__main {
width: 100%;
- &--fullscreen {
- margin-top: 20px;
- }
-
@include desktop_and_print {
width: $content-width;
-
- &--fullscreen {
- margin-top: 0px;
- width: 100%;
- }
}
@include widescreen {
width: calc(#{$content-ratio} * 80%);
+ }
- &--fullscreen {
+ &--fullscreen {
+ margin-top: 20px;
+
+ @include desktop_and_print {
+ width: 100%;
+ margin-top: 0px;
+ }
+
+ @include widescreen {
width: $body-max-width;
}
}
--
Gitblit v1.10.0