mirror of
https://github.com/jgthms/bulma
synced 2026-03-18 11:24:29 -07:00
Convert sass files to scss files
This commit is contained in:
50
sass/elements/container.scss
Normal file
50
sass/elements/container.scss
Normal file
@@ -0,0 +1,50 @@
|
||||
@import "../utilities/mixins";
|
||||
|
||||
$container-offset: 2 * $gap !default;
|
||||
$container-max-width: $fullhd !default;
|
||||
|
||||
.container {
|
||||
flex-grow: 1;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
width: auto;
|
||||
|
||||
&.is-fluid {
|
||||
max-width: none !important;
|
||||
padding-left: $gap;
|
||||
padding-right: $gap;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@include desktop {
|
||||
max-width: $desktop - $container-offset;
|
||||
}
|
||||
|
||||
|
||||
@include until-widescreen {
|
||||
&.is-widescreen:not(.is-max-desktop) {
|
||||
max-width: min($widescreen, $container-max-width) - $container-offset;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@include until-fullhd {
|
||||
&.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) {
|
||||
max-width: min($fullhd, $container-max-width) - $container-offset;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@include widescreen {
|
||||
&:not(.is-max-desktop) {
|
||||
max-width: min($widescreen, $container-max-width) - $container-offset;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@include fullhd {
|
||||
&:not(.is-max-desktop):not(.is-max-widescreen) {
|
||||
max-width: min($fullhd, $container-max-width) - $container-offset;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user