Skip to content

Commit

Permalink
style: increase sounds per row
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Oct 10, 2023
1 parent 89149dc commit cd8ec5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/container/container.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.container {
width: 85%;
max-width: 550px;
max-width: 600px;
margin: 0 auto;
}
2 changes: 1 addition & 1 deletion src/components/sounds/sounds.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
display: grid;
margin-top: 20px;
gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.button {
Expand Down
2 changes: 1 addition & 1 deletion src/components/sounds/sounds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function Sounds({ id, sounds }: SoundsProps) {
<Sound
key={sound.label}
{...sound}
hidden={!showAll && index > 3}
hidden={!showAll && index > 5}
selectHidden={selectHidden}
unselectHidden={unselectHidden}
/>
Expand Down

0 comments on commit cd8ec5e

Please sign in to comment.