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