mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-05 03:43:11 +08:00
23 lines
364 B
CSS
23 lines
364 B
CSS
.BookmarkGrid {
|
|
display: grid;
|
|
grid-template-columns: repeat(1, 1fr);
|
|
}
|
|
|
|
@media (min-width: 430px) {
|
|
.BookmarkGrid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 670px) {
|
|
.BookmarkGrid {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (min-width: 900px) {
|
|
.BookmarkGrid {
|
|
grid-template-columns: repeat(4, 1fr);
|
|
}
|
|
}
|