Skip to content

Commit

Permalink
fix typo in grid template
Browse files Browse the repository at this point in the history
  • Loading branch information
filipslezaklab committed Nov 29, 2024
1 parent cee68bc commit a5b009b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ import Image from "astro/components/Image.astro";
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
grid-row: auto auto;
grid-template-rows: auto auto;
gap: 30px;
justify-content: center;

Expand All @@ -163,7 +163,7 @@ import Image from "astro/components/Image.astro";

@include break-up(md) {
grid-template-columns: 133px 163px;
grid-row: auto auto;
grid-template-rows: auto auto;
column-gap: 86px;
row-gap: 86px;
}
Expand Down

0 comments on commit a5b009b

Please sign in to comment.