signal-desktop/stylesheets/components/GroupInput.scss

37 lines
593 B
SCSS
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use '../mixins';
@use '../variables';
2021-06-02 00:24:28 +00:00
.module-GroupInput {
2024-11-15 23:09:31 +00:00
@include mixins.normal-input;
2021-06-02 00:24:28 +00:00
&__description {
resize: none;
&--container {
margin-bottom: 12px;
margin-top: 0;
}
&--remaining {
2024-11-15 23:09:31 +00:00
@include mixins.font-subtitle;
2021-06-02 00:24:28 +00:00
bottom: 0;
2024-11-15 23:09:31 +00:00
color: variables.$color-gray-45;
2021-06-02 00:24:28 +00:00
margin: 12px;
position: absolute;
2023-04-20 17:03:43 +00:00
inset-inline-end: 0;
2021-06-02 00:24:28 +00:00
}
&--large {
height: 280px;
}
}
&--container {
position: relative;
margin: 16px;
}
}