signal-desktop/stylesheets/components/InstallScreenLinkInProgressStep.scss

33 lines
587 B
SCSS
Raw Normal View History

2021-12-16 15:02:22 +00:00
// 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-12-16 15:02:22 +00:00
.module-InstallScreenLinkInProgressStep {
2024-11-15 23:09:31 +00:00
@include mixins.install-screen;
2021-12-16 15:02:22 +00:00
2024-11-15 23:09:31 +00:00
& {
flex-direction: column;
text-align: center;
}
2021-12-16 15:02:22 +00:00
h1 {
2024-11-15 23:09:31 +00:00
@include mixins.font-title-2;
2021-12-16 15:02:22 +00:00
margin-top: 18px;
}
h2 {
2024-11-15 23:09:31 +00:00
@include mixins.font-body-1;
2021-12-16 15:02:22 +00:00
font-weight: normal;
margin-block-start: 0;
2021-12-16 15:02:22 +00:00
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
color: variables.$color-gray-60;
2021-12-16 15:02:22 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
color: variables.$color-gray-25;
2021-12-16 15:02:22 +00:00
}
}
}