Fix content container sizing
This commit is contained in:
parent
c691d0c594
commit
5efdf48c67
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
|||
@use "bulma/sass/utilities/initial-variables" as *;
|
||||
|
||||
$container-max-width: $widescreen;
|
||||
$pre-background: unset;
|
||||
$family-code: "Fira Code", monospace;
|
||||
$dropdown-content-radius: 0;
|
||||
|
|
|
@ -39,8 +39,9 @@ section.content {
|
|||
}
|
||||
|
||||
.container {
|
||||
@include until($container-max-width) {
|
||||
max-width: calc(99% - ($column-gap * 2));
|
||||
@include touch {
|
||||
// Keep a little padding around the content
|
||||
max-width: calc(100% - $gap);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue