mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-01-25 06:08:03 -05:00
21 lines
257 B
CSS
21 lines
257 B
CSS
.quick {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#add {
|
|
margin-top: auto;
|
|
}
|
|
|
|
@media only screen and (max-width: 770px) {
|
|
.quick {
|
|
flex-direction: row;
|
|
overflow-x: scroll;
|
|
}
|
|
#add {
|
|
margin-left: auto;
|
|
max-height: 25px;
|
|
max-width: 25px;
|
|
}
|
|
}
|