1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-30 08:09:35 +02:00
flame/client/src/components/Settings/Themer/Themer.module.css

18 lines
280 B
CSS
Raw Normal View History

2021-05-07 18:30:06 +02:00
.ThemerGrid {
width: 100%;
display: grid;
2021-05-12 18:31:02 +02:00
grid-template-columns: 1fr;
2021-05-07 18:30:06 +02:00
grid-auto-rows: 100px;
}
2021-05-12 18:31:02 +02:00
@media (min-width: 340px) {
.ThemerGrid {
grid-template-columns: 1fr 1fr;
}
}
@media (min-width: 680px) {
2021-05-07 18:30:06 +02:00
.ThemerGrid {
grid-template-columns: 1fr 1fr 1fr;
}
}