mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-31 00:19:36 +02:00
12 lines
197 B
CSS
12 lines
197 B
CSS
|
.ThemerGrid {
|
||
|
width: 100%;
|
||
|
display: grid;
|
||
|
grid-template-columns: 1fr 1fr;
|
||
|
grid-auto-rows: 100px;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 900px) {
|
||
|
.ThemerGrid {
|
||
|
grid-template-columns: 1fr 1fr 1fr;
|
||
|
}
|
||
|
}
|