44 lines
811 B
SCSS
44 lines
811 B
SCSS
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
@use '../mixins';
|
|
@use '../variables';
|
|
|
|
.About {
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
font-size: 14px;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
|
|
@include mixins.light-theme {
|
|
background-color: variables.$color-white;
|
|
color: variables.$color-black;
|
|
}
|
|
|
|
@include mixins.dark-theme {
|
|
background-color: variables.$color-gray-95;
|
|
color: variables.$color-white-alpha-80;
|
|
}
|
|
|
|
img {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
a {
|
|
@include mixins.light-theme {
|
|
color: variables.$color-ultramarine;
|
|
}
|
|
@include mixins.dark-theme {
|
|
color: variables.$color-ultramarine-pastel;
|
|
}
|
|
}
|
|
}
|
|
|
|
.About__Title {
|
|
@include mixins.font-body-1-bold;
|
|
margin: 0;
|
|
}
|