Skip to content

Commit

Permalink
/structure demo make grid wider
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Jul 8, 2023
1 parent e0dbc55 commit 3160d5f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/(demos)/structure/+page.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,13 @@
<style>
ul {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 1em;
list-style: none;
padding: 0;
text-align: center;
width: 90vw;
margin-left: calc(50cqw - 45vw);
}
</style>
```

0 comments on commit 3160d5f

Please sign in to comment.