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