You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
553 B
33 lines
553 B
.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; |
|
overflow: hidden; |
|
|
|
&:hover { |
|
border-color: var(--theme-text-link); |
|
} |
|
|
|
.avatar { |
|
height: 50px; |
|
width: 50px; |
|
border-color: rgba(0, 0, 0, 0.3); |
|
border-width: 1px; |
|
border-style: solid; |
|
} |
|
|
|
.account { |
|
color: var(--theme-text-secondary); |
|
text-overflow: ellipsis; |
|
} |
|
|
|
.placeholder { |
|
width: 100%; |
|
height: 100%; |
|
} |
|
}
|
|
|