signal-desktop/stylesheets/components/GroupDescription.scss
2023-08-21 09:30:32 -07:00

27 lines
504 B
SCSS

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
.GroupDescription {
&__text {
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
display: -webkit-box;
overflow: hidden;
user-select: text;
a {
@include light-theme {
color: $color-gray-90;
}
@include dark-theme {
color: $color-gray-02;
}
}
}
&__read-more {
@include button-reset();
display: inline-block;
font-weight: bold;
}
}