aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/stylesheets/layout/_container.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/layout/_container.scss')
-rw-r--r--app/assets/stylesheets/layout/_container.scss42
1 files changed, 42 insertions, 0 deletions
diff --git a/app/assets/stylesheets/layout/_container.scss b/app/assets/stylesheets/layout/_container.scss
new file mode 100644
index 0000000..6a20bea
--- /dev/null
+++ b/app/assets/stylesheets/layout/_container.scss
@@ -0,0 +1,42 @@
+@if ($enable-class-container and $enable-classes) {
+ /**
+ * Container
+ */
+
+ .container,
+ .container-fluid {
+ width: 100%;
+ margin-right: auto;
+ margin-left: auto;
+ padding-right: var(--spacing);
+ padding-left: var(--spacing);
+ }
+
+ .container {
+ @if map-get($breakpoints, "sm") {
+ @media (min-width: map-get($breakpoints, "sm")) {
+ max-width: map-get($viewports, "sm");
+ padding-right: 0;
+ padding-left: 0;
+ }
+ }
+
+ @if map-get($breakpoints, "md") {
+ @media (min-width: map-get($breakpoints, "md")) {
+ max-width: map-get($viewports, "md");
+ }
+ }
+
+ @if map-get($breakpoints, "lg") {
+ @media (min-width: map-get($breakpoints, "lg")) {
+ max-width: map-get($viewports, "lg");
+ }
+ }
+
+ @if map-get($breakpoints, "xl") {
+ @media (min-width: map-get($breakpoints, "xl")) {
+ max-width: map-get($viewports, "xl");
+ }
+ }
+ }
+}