Skip to content

Commit

Permalink
SWED-2249 fix CSS grid-template shorthand playbook
Browse files Browse the repository at this point in the history
  • Loading branch information
goldenraphti committed Oct 10, 2023
1 parent f5378f2 commit 8adf900
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions src/less/documentation-swedbankpay.less
Original file line number Diff line number Diff line change
Expand Up @@ -839,18 +839,17 @@
grid-template:
"one three four five" 1fr
"two three four six" 2fr
repeat(4, 1fr);
/ 1fr 1fr 1fr 1fr;
gap: 10px;

@media (max-width: @screen-sm-min) {
grid-template-areas:
"one one"
"two two"
"three four"
"five five"
"six six"
1fr 1fr;
grid-template-rows: repeat(5, auto);
grid-template:
"one one" auto
"two two" auto
"three four" auto
"five five" auto
"six six" auto
/ 1fr 1fr;
}

img {
Expand Down

0 comments on commit 8adf900

Please sign in to comment.