om/node_modules/bulma/sass/elements/container.sass

24 lines
539 B
Sass
Raw Normal View History

2019-07-02 16:05:15 +02:00
$container-offset: (2 * $gap) !default
.container
2019-07-02 16:05:15 +02:00
flex-grow: 1
margin: 0 auto
position: relative
2019-07-02 16:05:15 +02:00
width: auto
+desktop
2019-07-02 16:05:15 +02:00
max-width: $desktop - $container-offset
&.is-fluid
margin-left: $gap
margin-right: $gap
max-width: none
+until-widescreen
&.is-widescreen
2019-07-02 16:05:15 +02:00
max-width: $widescreen - $container-offset
+until-fullhd
&.is-fullhd
2019-07-02 16:05:15 +02:00
max-width: $fullhd - $container-offset
+widescreen
2019-07-02 16:05:15 +02:00
max-width: $widescreen - $container-offset
+fullhd
2019-07-02 16:05:15 +02:00
max-width: $fullhd - $container-offset