2022-12-28 09:49:41 +03:00
|
|
|
@import '../../../../../web/styles/mixins.scss';
|
|
|
|
|
2022-07-12 04:29:58 +03:00
|
|
|
.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);
|
|
|
|
}
|
|
|
|
|
|
|
|
.account {
|
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include screen(mobile) {
|
2022-12-28 09:49:41 +03:00
|
|
|
margin: auto;
|
|
|
|
}
|
2022-07-12 04:29:58 +03:00
|
|
|
|
|
|
|
&:hover {
|
2023-01-28 01:23:59 +03:00
|
|
|
border-color: var(--theme-color-action);
|
2022-07-12 04:29:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
height: 50px;
|
|
|
|
width: 50px;
|
|
|
|
border-color: rgba(0, 0, 0, 0.3);
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.placeholder {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|