2022-12-29 23:00:23 -08:00
|
|
|
@import '../../../../styles/mixins.scss';
|
|
|
|
|
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;
|
2022-12-29 23:00:23 -08:00
|
|
|
|
|
|
|
@include screen(desktop) {
|
|
|
|
background-color: var(--theme-color-components-content-background);
|
|
|
|
}
|
2023-01-12 15:05:55 -08:00
|
|
|
|
|
|
|
@include screen(mobile) {
|
|
|
|
.followerRow {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
2022-10-09 20:31:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.noFollowers {
|
|
|
|
padding: calc(2 * var(--content-padding));
|
|
|
|
border-radius: var(--theme-rounded-corners);
|
|
|
|
width: 100%;
|
2022-11-12 20:26:55 -08:00
|
|
|
background-color: var(--theme-color-components-content-background);
|
2022-09-03 20:38:52 +02:00
|
|
|
}
|