Files
bulma/sass/elements/container.sass

24 lines
539 B
Sass
Raw Normal View History

2019-05-17 13:50:39 +01:00
$container-offset: (2 * $gap) !default
2017-08-01 21:05:10 +01:00
.container
2019-05-17 12:51:52 +01:00
flex-grow: 1
2017-08-01 21:05:10 +01:00
margin: 0 auto
position: relative
2019-05-17 12:51:52 +01:00
width: auto
2018-04-08 20:11:48 +01:00
+desktop
2019-05-17 13:50:39 +01:00
max-width: $desktop - $container-offset
2017-08-01 21:05:10 +01:00
&.is-fluid
margin-left: $gap
margin-right: $gap
max-width: none
2018-04-08 20:11:48 +01:00
+until-widescreen
2017-08-01 21:05:10 +01:00
&.is-widescreen
2019-05-17 13:50:39 +01:00
max-width: $widescreen - $container-offset
2018-04-08 20:11:48 +01:00
+until-fullhd
2017-08-01 21:05:10 +01:00
&.is-fullhd
2019-05-17 13:50:39 +01:00
max-width: $fullhd - $container-offset
2018-04-08 20:11:48 +01:00
+widescreen
2019-05-17 13:50:39 +01:00
max-width: $widescreen - $container-offset
2018-04-08 20:11:48 +01:00
+fullhd
2019-05-17 13:50:39 +01:00
max-width: $fullhd - $container-offset