mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 00:44:14 +00:00
style: increase sounds per row
This commit is contained in:
parent
89149dca78
commit
cd8ec5e864
3 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
|||
.container {
|
||||
width: 85%;
|
||||
max-width: 550px;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue