Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lxndrblz/anatole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/scss/partials/components/_wrapper.scss')
-rw-r--r--assets/scss/partials/components/_wrapper.scss17
1 files changed, 17 insertions, 0 deletions
diff --git a/assets/scss/partials/components/_wrapper.scss b/assets/scss/partials/components/_wrapper.scss
index aa6648b..3a48538 100644
--- a/assets/scss/partials/components/_wrapper.scss
+++ b/assets/scss/partials/components/_wrapper.scss
@@ -20,6 +20,19 @@
@include widescreen {
width: calc(#{$content-ratio} * 80%);
}
+
+ &--fullscreen {
+ margin-top: 20px;
+
+ @include desktop_and_print {
+ width: 100%;
+ margin-top: 0px;
+ }
+
+ @include widescreen {
+ width: $body-max-width;
+ }
+ }
}
&__sidebar {
@@ -34,5 +47,9 @@
@include widescreen {
width: calc(#{$sidebar-ratio} * 80%);
}
+
+ &--hidden {
+ display: none;
+ }
}
}