mirror of
https://github.com/owncast/owncast.git
synced 2024-12-26 11:08:43 +03:00
27 lines
512 B
SCSS
27 lines
512 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);
|
|
}
|
|
|
|
.pagination {
|
|
margin: 1rem;
|
|
}
|