Skip to content

Commit

Permalink
Remove max-width content restriction for smaller screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Xpirix committed Oct 25, 2024
1 parent 95e9d06 commit 23aef96
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions qgis-app/static/style/scss/bulma/elements/container.sass
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ $container-max-width: $fullhd !default
// padding-left: $gap
// padding-right: $gap
width: 100%
+tablet
max-width: $tablet - $container-offset
+until-tablet
max-width: min($tablet, $container-max-width) - $container-offset
+desktop
max-width: $desktop - $container-offset
// +tablet
// max-width: $tablet - $container-offset
// +until-tablet
// max-width: min($tablet, $container-max-width) - $container-offset
// +desktop
// max-width: $desktop - $container-offset
+until-widescreen
&.is-widescreen:not(.is-max-desktop)
max-width: min($widescreen, $container-max-width) - $container-offset
Expand Down

0 comments on commit 23aef96

Please sign in to comment.