mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-06 19:18:22 +01:00
d8edea9fbc
forgot to update .editorconfig to include scss...
37 lines
683 B
SCSS
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;
|
|
}
|