Make buttons into column if screen is too smol

This commit is contained in:
Lyra 2025-03-09 12:41:33 +01:00
parent c15e0a24e5
commit 3492a3da2e

View file

@ -47,10 +47,18 @@
.buttons { .buttons {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-direction: row;
max-width: 1050px; max-width: 1050px;
gap: 30px;
margin: 100 auto; margin: 100 auto;
} }
@media screen and (max-width:1100px) {
.buttons {
flex-direction: column;
}
}
.buttonzoom { .buttonzoom {
transition: transform .1s; transition: transform .1s;
margin: 0 auto; margin: 0 auto;