Rework loading followers and pagination a bit. Closes #2835

This commit is contained in:
Gabe Kangas
2023-03-22 14:38:29 -07:00
parent c994564fb4
commit 78fe01d049
4 changed files with 38 additions and 32 deletions

View File

@@ -3,9 +3,20 @@
.followers {
width: 100%;
padding: 5px;
min-height: 20vh;
.followerRow {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
.followerRow {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@include screen(mobile) {
.followerRow {
display: block;
justify-content: center;
}
}