mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-21 12:29:36 +02:00
23 lines
344 B
CSS
23 lines
344 B
CSS
|
.AppGrid {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(1, 1fr);
|
||
|
}
|
||
|
|
||
|
@media (min-width: 430px) {
|
||
|
.AppGrid {
|
||
|
grid-template-columns: repeat(2, 1fr);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 670px) {
|
||
|
.AppGrid {
|
||
|
grid-template-columns: repeat(3, 1fr);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media (min-width: 900px) {
|
||
|
.AppGrid {
|
||
|
grid-template-columns: repeat(4, 1fr);
|
||
|
}
|
||
|
}
|