feat: Implement collaboration features including user following and avatar management

This commit is contained in:
2025-04-29 12:50:14 +05:30
parent ea53af62c4
commit c1a7fe3015
16 changed files with 243 additions and 63 deletions

View File

@@ -0,0 +1,22 @@
.follow-person-container{
height: 100vh;
width: 100vw;
position: fixed;
top: 0;
left: 0;
outline: 8px solid var(--user-color);
outline-offset: -3px;
border-radius: 16px;
.follower-name{
background-color: var(--user-color);
color: #FFFFFF;
padding: 4px 8px;
padding-top: 16px;
text-align: center;
position: absolute;
top: -10px;
left: 50%;
transform: translate(-50%, 0);
border-radius: 8px;
}
}