mirror of
https://github.com/owncast/owncast.git
synced 2024-12-22 09:14:47 +03:00
591ead0064
* fix placeholder styling * Prettified Code! * fix code style --------- Co-authored-by: JacobWrenn <JacobWrenn@users.noreply.github.com>
48 lines
912 B
SCSS
48 lines
912 B
SCSS
@import '../../../../../web/styles/mixins.scss';
|
|
|
|
.follower {
|
|
border-color: rgba(0, 0, 0, 0.3);
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
padding: 10px 10px;
|
|
border-radius: 15px;
|
|
height: 75px;
|
|
width: 250px;
|
|
font-size: 0.8rem;
|
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
.name {
|
|
font-weight: 600;
|
|
font-size: 1rem;
|
|
color: var(--theme-color-components-text-on-light);
|
|
display: inline-block;
|
|
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
width: calc(85%);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.account {
|
|
color: var(--theme-color-components-text-on-light);
|
|
word-break: break-all;
|
|
line-height: 1rem;
|
|
}
|
|
|
|
@include screen(mobile) {
|
|
margin: auto;
|
|
}
|
|
|
|
&:hover {
|
|
border-color: var(--theme-color-action);
|
|
}
|
|
|
|
.avatar {
|
|
height: 50px;
|
|
width: 50px;
|
|
border-color: rgba(0, 0, 0, 0.3);
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
}
|
|
}
|