2024-09-04 03:52:08 -04:00
|
|
|
:root {
|
|
|
|
--toolbar-btn-color: var(--white);
|
|
|
|
}
|
|
|
|
|
2024-09-06 08:36:15 -04:00
|
|
|
@include theme('light') {
|
|
|
|
--toolbar-btn-color: var(--neutral-70);
|
|
|
|
}
|
|
|
|
|
2024-09-04 03:52:08 -04:00
|
|
|
.online-users {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.online-user {
|
|
|
|
display: inline-block;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin-right: var(--spacing-04);
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
text-transform: uppercase;
|
|
|
|
border-radius: var(--border-radius-base);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.online-user-multi {
|
|
|
|
@include reset-button;
|
|
|
|
|
|
|
|
color: var(--toolbar-btn-color);
|
|
|
|
width: auto;
|
|
|
|
min-width: 24px;
|
|
|
|
padding-left: var(--spacing-04);
|
|
|
|
padding-right: var(--spacing-03);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|