waveterm/frontend/app/view/chat/userlist.scss
Evan Simkowitz 2e91ee843c
Switch from Less to Scss (#1335)
Less hasn't received an update in over a year and the parser is missing
some modern syntax like relative colors so this switches us to scss
2024-11-21 16:05:04 -08:00

37 lines
683 B
SCSS

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
.user-list {
display: flex;
flex-direction: column;
padding: 10px;
max-width: 250px;
background-color: rgba(255, 255, 255, 0.025);
padding: 5px;
}
.user-status-item {
display: flex;
align-items: center;
padding: 8px;
margin-bottom: 6px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.user-status-item:hover {
background-color: var(--button-grey-hover-bg);
border-radius: 4px;
}
.user-status-icon {
margin-right: 10px;
display: flex;
align-items: center;
}
.user-status-text {
font-size: 1em;
font-weight: bold;
}