Make buttons into column if screen is too smol
This commit is contained in:
parent
c15e0a24e5
commit
3492a3da2e
1 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue