Skip to content

Commit

Permalink
center grid items better
Browse files Browse the repository at this point in the history
  • Loading branch information
farisashai committed Jan 10, 2024
1 parent 4d8ec54 commit f7eed9b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/events/EventDisplay/style.module.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.container {
display: flex;
flex-wrap: wrap;
gap: 1rem;
column-gap: 1rem;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
place-items: center;
row-gap: 2rem;
}

0 comments on commit f7eed9b

Please sign in to comment.