mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-19 17:58:48 +00:00
32 lines
606 B
SCSS
32 lines
606 B
SCSS
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
@use '../mixins';
|
|
@use '../variables';
|
|
|
|
.BackupMediaDownloadProgressSettings {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 20px;
|
|
|
|
&__buttons {
|
|
display: flex;
|
|
gap: 12px;
|
|
}
|
|
}
|
|
|
|
.BackupMediaDownloadProgressSettings__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
flex: 1;
|
|
}
|
|
|
|
.BackupMediaDownloadProgressSettings__description {
|
|
color: light-dark(variables.$color-gray-60, variables.$color-gray-25);
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
}
|