mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-17 16:44:49 -04:00
22 lines
370 B
SCSS
22 lines
370 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
.user-line-color-indicator {
|
|
border-left: 3px solid var(--color);
|
|
min-height: 30px;
|
|
height: 100%;
|
|
flex: 0 0 3px;
|
|
}
|
|
|
|
.user-avatar {
|
|
flex: 0 0 20px;
|
|
}
|
|
|
|
.user-line-name {
|
|
text-overflow: ellipsis;
|
|
flex: 1 1 0;
|
|
overflow: hidden;
|
|
}
|