Rework loading followers and pagination a bit. Closes #2835
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user