signal-desktop/stylesheets/components/RecordingComposer.scss

41 lines
754 B
SCSS
Raw Normal View History

2023-03-02 20:55:40 +00:00
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use '../mixins';
@use '../variables';
2023-03-02 20:55:40 +00:00
.RecordingComposer {
display: flex;
align-items: center;
gap: 12px;
2023-04-20 17:03:43 +00:00
padding-block: 10px;
padding-inline: 18px;
2023-03-02 20:55:40 +00:00
&__content {
display: flex;
align-items: center;
gap: 8px;
flex: 1;
border-radius: 16px;
height: 32px;
2023-04-20 17:03:43 +00:00
padding-block: 6px;
padding-inline: 12px;
2023-03-02 20:55:40 +00:00
overflow: hidden;
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
background: variables.$color-gray-05;
2023-03-02 20:55:40 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
background: variables.$color-gray-75;
2023-03-02 20:55:40 +00:00
}
}
&__button {
font-size: 13px;
min-width: 76px;
line-height: 18px;
2023-04-20 17:03:43 +00:00
padding-block: 5px;
padding-inline: 16px;
2023-03-02 20:55:40 +00:00
}
}