From 7981438d6c1bd1513ff0f2faab88035c1ef116c2 Mon Sep 17 00:00:00 2001
From: Alexander Sohn <39831045+Sohn123@users.noreply.github.com>
Date: Sun, 26 Mar 2023 10:25:53 +0000
Subject: [PATCH] fix: remove mixin to fix print layout (#391)
---
assets/scss/partials/components/_wrapper.scss | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/assets/scss/partials/components/_wrapper.scss b/assets/scss/partials/components/_wrapper.scss
index 3a48538..eae756d 100644
--- a/assets/scss/partials/components/_wrapper.scss
+++ b/assets/scss/partials/components/_wrapper.scss
@@ -13,7 +13,7 @@
&__main {
width: 100%;
- @include desktop_and_print {
+ @include desktop {
width: $content-width;
}
@@ -24,7 +24,7 @@
&--fullscreen {
margin-top: 20px;
- @include desktop_and_print {
+ @include desktop {
width: 100%;
margin-top: 0px;
}
@@ -39,7 +39,7 @@
width: 100%;
padding: 16px 0;
- @include desktop_and_print {
+ @include desktop {
width: $sidebar-width;
padding: 0;
}
--
Gitblit v1.10.0