2023-06-20 20:56:37 -07:00
|
|
|
@import '../../../../styles/mixins';
|
2022-12-29 23:00:23 -08:00
|
|
|
|
2022-09-03 20:38:52 +02:00
|
|
|
.followers {
|
2022-10-09 20:31:07 -07:00
|
|
|
width: 100%;
|
2022-10-17 11:48:05 +05:30
|
|
|
padding: 5px;
|
2023-03-22 14:38:29 -07:00
|
|
|
min-height: 20vh;
|
2022-12-29 23:00:23 -08:00
|
|
|
|
2023-03-22 14:38:29 -07:00
|
|
|
.followerRow {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
|
|
}
|
2023-06-20 20:56:37 -07:00
|
|
|
|
|
|
|
@media (width <= 900px) {
|
2023-03-22 14:38:29 -07:00
|
|
|
.followerRow {
|
|
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
}
|
|
|
|
}
|
2023-06-20 20:56:37 -07:00
|
|
|
|
2023-01-12 15:05:55 -08:00
|
|
|
@include screen(mobile) {
|
|
|
|
.followerRow {
|
2023-03-22 14:38:29 -07:00
|
|
|
display: block;
|
2023-01-12 15:05:55 -08:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
2022-10-09 20:31:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.noFollowers {
|
2023-02-21 16:15:09 -08:00
|
|
|
padding: var(--content-padding);
|
2022-10-09 20:31:07 -07:00
|
|
|
border-radius: var(--theme-rounded-corners);
|
|
|
|
width: 100%;
|
2022-09-03 20:38:52 +02:00
|
|
|
}
|
2023-02-08 19:57:30 -08:00
|
|
|
|
|
|
|
.pagination {
|
|
|
|
margin: 1rem;
|
|
|
|
}
|