Create AssignUserBtn component

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-03-13 16:54:00 +01:00
parent c3f71965c3
commit 94ceff8288
3 changed files with 97 additions and 0 deletions
@@ -0,0 +1,23 @@
.usersList {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 10px;
}
.userCard {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 14px;
border-radius: 10px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.08);
}
.userName {
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}