Skip to content

Commit

Permalink
Display crafters in a grid
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasKunnen committed Jan 13, 2024
1 parent 70b43d8 commit a158089
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/Crafters/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
}
.crafters {
display: flex;
flex-wrap: wrap;
gap: 1em;
display: grid;
gap: 2em;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
--game-icon-width: 64px;
}
</style>

0 comments on commit a158089

Please sign in to comment.