mirror of
https://github.com/remvze/moodist.git
synced 2025-09-29 15:30:49 -04:00
style: increase sounds per row
This commit is contained in:
parent
89149dca78
commit
cd8ec5e864
@ -1,5 +1,5 @@
|
|||||||
.container {
|
.container {
|
||||||
width: 85%;
|
width: 85%;
|
||||||
max-width: 550px;
|
max-width: 600px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
display: grid;
|
display: grid;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
gap: 20px;
|
gap: 20px;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
|
@ -50,7 +50,7 @@ export function Sounds({ id, sounds }: SoundsProps) {
|
|||||||
<Sound
|
<Sound
|
||||||
key={sound.label}
|
key={sound.label}
|
||||||
{...sound}
|
{...sound}
|
||||||
hidden={!showAll && index > 3}
|
hidden={!showAll && index > 5}
|
||||||
selectHidden={selectHidden}
|
selectHidden={selectHidden}
|
||||||
unselectHidden={unselectHidden}
|
unselectHidden={unselectHidden}
|
||||||
/>
|
/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user