Skip to content

Commit

Permalink
feat: update sound grid layout
Browse files Browse the repository at this point in the history
Increase layout to 6 columns when screen is bigger then 800px
  • Loading branch information
mateusfg7 committed Jan 5, 2022
1 parent 395977e commit 6c9eed8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/styles/pages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@ export const SoundGridLayout = styled.div`
grid-template-columns: repeat(5, 1fr);
gap: 30px;
}
@media (min-width: 800px) {
grid-template-columns: repeat(6, 1fr);
}
`

0 comments on commit 6c9eed8

Please sign in to comment.