signal-desktop/stylesheets/components/InstallScreenLinkInProgressStep.scss
2024-11-15 15:09:31 -08:00

32 lines
587 B
SCSS

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
@use '../mixins';
@use '../variables';
.module-InstallScreenLinkInProgressStep {
@include mixins.install-screen;
& {
flex-direction: column;
text-align: center;
}
h1 {
@include mixins.font-title-2;
margin-top: 18px;
}
h2 {
@include mixins.font-body-1;
font-weight: normal;
margin-block-start: 0;
@include mixins.light-theme {
color: variables.$color-gray-60;
}
@include mixins.dark-theme {
color: variables.$color-gray-25;
}
}
}