mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 19:49:37 +02:00
22 lines
344 B
CSS
22 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);
|
|
}
|
|
}
|