mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-04 11:22:40 -05:00
32 lines
564 B
CSS
32 lines
564 B
CSS
.pendingRow {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: var(--s-1) var(--s-2);
|
|
border-radius: var(--radius-field);
|
|
}
|
|
|
|
.pendingUser {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2);
|
|
font-weight: var(--weight-semi);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.userName {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
font-size: var(--font-sm);
|
|
}
|
|
|
|
.friendsListHeader {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
gap: var(--s-2);
|
|
margin-block-end: var(--s-2);
|
|
}
|