Skip to content

Commit

Permalink
SWED-2249 fix linting playbook css
Browse files Browse the repository at this point in the history
  • Loading branch information
goldenraphti committed Oct 10, 2023
1 parent 3f86c60 commit d2c0a1a
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/less/documentation-swedbankpay.less
Original file line number Diff line number Diff line change
Expand Up @@ -836,11 +836,10 @@
.grid-row {
&.delicate-lines {
display: grid;
grid-template-areas:
"one three four five"
"two three four six";
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 1fr 2fr;
grid-template:
"one three four five" 1fr
"two three four six" 2fr
repeat(4, 1fr);
gap: 10px;

@media (max-width: @screen-sm-min) {
Expand All @@ -849,8 +848,8 @@
"two two"
"three four"
"five five"
"six six";
grid-template-columns: 1fr 1fr;
"six six"
1fr 1fr;
grid-template-rows: repeat(5, auto);
}

Expand Down

0 comments on commit d2c0a1a

Please sign in to comment.