33 lines
427 B
SCSS
33 lines
427 B
SCSS
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.title {
|
|
max-width: 100%;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.participantCount {
|
|
color: var(--color-text-secondary);
|
|
}
|
|
|
|
.participants {
|
|
overflow-x: scroll;
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-self: stretch;
|
|
}
|
|
|
|
.participant {
|
|
width: 4.5rem;
|
|
min-width: 4.5rem;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.buttons {
|
|
align-self: flex-end;
|
|
margin-top: 0.5rem;
|
|
}
|