mirror of
https://github.com/owncast/owncast.git
synced 2024-12-21 00:35:47 +03:00
23 lines
479 B
SCSS
23 lines
479 B
SCSS
@import '../../../../styles/mixins.scss';
|
|
|
|
.followers {
|
|
width: 100%;
|
|
padding: 5px;
|
|
|
|
@include screen(desktop) {
|
|
background-color: var(--theme-color-components-content-background);
|
|
}
|
|
|
|
@include screen(mobile) {
|
|
.followerRow {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.noFollowers {
|
|
padding: calc(2 * var(--content-padding));
|
|
border-radius: var(--theme-rounded-corners);
|
|
width: 100%;
|
|
background-color: var(--theme-color-components-content-background);
|
|
}
|