Skip to content

Commit

Permalink
Fix channels page responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
probablykasper committed Jan 21, 2024
1 parent ee37454 commit c85d377
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/channels/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@
padding: var(--page-padding)
gap: var(--page-padding)
display: grid
grid-template-columns: repeat(auto-fill, minmax(550px, 1fr))
grid-template-columns: 1fr
@media screen and (min-width: 600px)
grid-template-columns: repeat(auto-fill, minmax(550px, 1fr))
.channel
display: flex
align-items: center
Expand Down

0 comments on commit c85d377

Please sign in to comment.