Compare commits

...

2 Commits

Author SHA1 Message Date
Marco Cavalli 98f50051c1 fix fullwidth after WP 6.5 2024-04-24 16:09:47 +02:00
Marco Cavalli 01ec7b4593 fix fullwidth after WP 6.5 2024-04-24 16:05:17 +02:00
1 changed files with 5 additions and 4 deletions

View File

@ -37,6 +37,7 @@
}
.fullwidth {
max-width: unset !important;
&.row {
gap:20px;
@ -54,13 +55,13 @@
}
@include resp-min($grid-max-width) {
margin-left: calc(0px - $grid-gutter - ((100vw - $grid-max-width) / 2));
margin-right: calc(0px - $grid-gutter - ((100vw - $grid-max-width) / 2));
margin-left: calc(0px - $grid-gutter - ((100vw - $grid-max-width) / 2)) !important;
margin-right: calc(0px - $grid-gutter - ((100vw - $grid-max-width) / 2)) !important;
}
@include resp-max($grid-max-width - 1) {
margin-left: calc(0px - $grid-gutter);
margin-right: calc(0px - $grid-gutter);
margin-left: calc(0px - $grid-gutter) !important;
margin-right: calc(0px - $grid-gutter) !important;
}
@include resp-max($breakpoint-sm) {