fix fullwidth after WP 6.5

This commit is contained in:
Marco Cavalli 2024-04-24 16:05:17 +02:00
parent 2700e90afb
commit 01ec7b4593
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) {