38 lines
734 B
SCSS
38 lines
734 B
SCSS
.excalidraw {
|
|
.UserList {
|
|
pointer-events: none;
|
|
/*github corner*/
|
|
padding: var(--space-factor) var(--space-factor) var(--space-factor)
|
|
var(--space-factor);
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 0.625rem;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
// can fit max 5 avatars in a column
|
|
max-height: 140px;
|
|
|
|
// can fit max 10 avatars in a row when there's enough space
|
|
max-width: 290px;
|
|
|
|
// Tweak in 30px increments to fit more/fewer avatars in a row/column ^^
|
|
|
|
overflow: hidden;
|
|
}
|
|
|
|
.UserList > * {
|
|
pointer-events: all;
|
|
}
|
|
|
|
.UserList_mobile {
|
|
padding: 0;
|
|
justify-content: normal;
|
|
margin: 0.5rem 0;
|
|
}
|
|
}
|