mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-07 04:53:12 +08:00
18 lines
280 B
CSS
18 lines
280 B
CSS
.ThemerGrid {
|
|
width: 100%;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
grid-auto-rows: 100px;
|
|
}
|
|
|
|
@media (min-width: 340px) {
|
|
.ThemerGrid {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 680px) {
|
|
.ThemerGrid {
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
}
|
|
} |