Files
bulma/sass/elements/container.sass

30 lines
886 B
Sass
Raw Normal View History

2020-10-31 23:52:27 +00:00
@import "../utilities/mixins"
2019-05-17 13:50:39 +01:00
$container-offset: (2 * $gap) !default
2020-09-27 23:50:12 +01:00
$container-max-width: $fullhd !default
2019-05-17 13:50:39 +01:00
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
&.is-fluid
2020-09-27 23:50:12 +01:00
max-width: none !important
2019-09-19 15:18:04 +01:00
padding-left: $gap
padding-right: $gap
width: 100%
2018-04-08 20:11:48 +01:00
+desktop
2019-05-17 13:50:39 +01:00
max-width: $desktop - $container-offset
2018-04-08 20:11:48 +01:00
+until-widescreen
2020-09-27 23:50:12 +01:00
&.is-widescreen:not(.is-max-desktop)
max-width: min($widescreen, $container-max-width) - $container-offset
2018-04-08 20:11:48 +01:00
+until-fullhd
2020-09-27 23:50:12 +01:00
&.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen)
max-width: min($fullhd, $container-max-width) - $container-offset
2018-04-08 20:11:48 +01:00
+widescreen
2020-09-27 23:50:12 +01:00
&:not(.is-max-desktop)
max-width: min($widescreen, $container-max-width) - $container-offset
2018-04-08 20:11:48 +01:00
+fullhd
2020-09-27 23:50:12 +01:00
&:not(.is-max-desktop):not(.is-max-widescreen)
max-width: min($fullhd, $container-max-width) - $container-offset