fix fullwidth after WP 6.5
This commit is contained in:
parent
2700e90afb
commit
01ec7b4593
|
@ -37,6 +37,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.fullwidth {
|
.fullwidth {
|
||||||
|
max-width: unset !important;
|
||||||
|
|
||||||
&.row {
|
&.row {
|
||||||
gap:20px;
|
gap:20px;
|
||||||
|
@ -54,13 +55,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
@include resp-min($grid-max-width) {
|
@include resp-min($grid-max-width) {
|
||||||
margin-left: 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));
|
margin-right: calc(0px - $grid-gutter - ((100vw - $grid-max-width) / 2)) !important;;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include resp-max($grid-max-width - 1) {
|
@include resp-max($grid-max-width - 1) {
|
||||||
margin-left: calc(0px - $grid-gutter);
|
margin-left: calc(0px - $grid-gutter) !important;;
|
||||||
margin-right: calc(0px - $grid-gutter);
|
margin-right: calc(0px - $grid-gutter) !important;;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include resp-max($breakpoint-sm) {
|
@include resp-max($breakpoint-sm) {
|
||||||
|
|
Loading…
Reference in New Issue