owncast/web/components/ui/followers/SingleFollower/SingleFollower.module.scss

54 lines
971 B
SCSS
Raw Normal View History

@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;
2023-01-28 01:23:59 +03:00
color: var(--theme-color-components-text-on-light);
.name {
font-weight: 600;
font-size: 1rem;
color: var(--theme-color-components-text-on-light);
2023-01-28 01:37:10 +03:00
display: inline-block;
text-overflow: ellipsis;
overflow: hidden;
width: calc(85%);
white-space: nowrap;
2023-01-28 01:23:59 +03:00
}
.account {
color: var(--theme-color-components-text-on-light);
2023-01-28 01:37:10 +03:00
word-break: break-all;
line-height: 0.9rem;
2023-01-28 01:23:59 +03:00
}
@include screen(mobile) {
margin: auto;
}
&:hover {
2023-01-28 01:23:59 +03:00
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;
}
.placeholder {
width: 100%;
height: 100%;
}
}