Add Followers list and single follower component. Closes #1861

This commit is contained in:
Gabe Kangas
2022-07-11 18:29:58 -07:00
parent 24db1d6c6d
commit e0634abc98
8 changed files with 111 additions and 46 deletions

View File

@@ -0,0 +1,37 @@
.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%;
}
}
.followers {
width: 100%;
}