mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-24 21:39:36 +02:00
18 lines
No EOL
280 B
CSS
18 lines
No EOL
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;
|
|
}
|
|
} |