core: fix fx-grid columns width (#80652)
gitea/publik-base-theme/pipeline/head This commit looks good Details

This commit is contained in:
Corentin Sechet 2023-08-29 16:16:53 +02:00
parent e109a02694
commit 5ca3bc6a7e
1 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ $min-grid-desktop-viewport: "min-width: #{min-desktop-viewport($fx-grid-tablet-l
@for $j from 1 through $i {
> .size--#{$j}-#{$i},
> [class*="size--"][class*="--m#{$j}-#{$i}"] {
--nb-cols: #{$i};
--nb-cols: #{$i/$j};
flex-grow: 0;
}
}
@ -86,7 +86,7 @@ $min-grid-desktop-viewport: "min-width: #{min-desktop-viewport($fx-grid-tablet-l
@for $i from 1 through $max-cols-tablet {
@for $j from 1 through $i {
> [class*="size--"][class*="--t#{$j}-#{$i}"] {
--nb-cols: #{$i};
--nb-cols: #{$i/$j};
flex-grow: 0;
}
}
@ -96,7 +96,7 @@ $min-grid-desktop-viewport: "min-width: #{min-desktop-viewport($fx-grid-tablet-l
@for $i from 1 through $max-cols-desktop {
@for $j from 1 through $i {
> [class*="size--"][class*="--d#{$j}-#{$i}"] {
--nb-cols: #{$i};
--nb-cols: #{$i/$j};
flex-grow: 0;
}
}