signal-desktop/stylesheets/components/About.scss

42 lines
676 B
SCSS
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
.About {
align-items: center;
2024-11-06 02:05:24 +00:00
display: flex;
font-size: 14px;
height: 100vh;
justify-content: center;
overflow: hidden;
text-align: center;
2024-11-06 02:05:24 +00:00
@include light-theme {
background-color: $color-white;
color: $color-black;
}
@include dark-theme {
background-color: $color-gray-95;
color: $color-white-alpha-80;
}
img {
margin-top: 1em;
}
a {
2024-11-06 02:05:24 +00:00
@include light-theme {
color: $color-ultramarine;
}
@include dark-theme {
color: $color-ultramarine-pastel;
}
}
}
2024-11-06 02:05:24 +00:00
.About__Title {
@include font-body-1-bold;
margin: 0;
}