From eac53f66f73ced5c1320fc0862102ae88c925007 Mon Sep 17 00:00:00 2001
From: alexanderdavide <alexeble1998@gmail.com>
Date: Sat, 12 Feb 2022 17:01:34 +0000
Subject: [PATCH] refactor: extract and unify wrapper to baseof
---
assets/scss/partials/components/_wrapper.scss | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/assets/scss/partials/components/_wrapper.scss b/assets/scss/partials/components/_wrapper.scss
index 67bc4e2..0fd1484 100644
--- a/assets/scss/partials/components/_wrapper.scss
+++ b/assets/scss/partials/components/_wrapper.scss
@@ -5,4 +5,20 @@
@include desktop {
flex-direction: row;
}
+
+ &__main {
+ width: 100%;
+
+ @include desktop_and_print {
+ width: $content-width;
+ }
+ }
+
+ &__sidebar {
+ width: 100%;
+
+ @include desktop_and_print {
+ width: $sidebar-width;
+ }
+ }
}
--
Gitblit v1.10.0