signal-desktop/stylesheets/components/About.scss

45 lines
811 B
SCSS
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use '../mixins';
@use '../variables';
.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-15 23:09:31 +00:00
@include mixins.light-theme {
background-color: variables.$color-white;
color: variables.$color-black;
2024-11-06 02:05:24 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
background-color: variables.$color-gray-95;
color: variables.$color-white-alpha-80;
2024-11-06 02:05:24 +00:00
}
img {
margin-top: 1em;
}
a {
2024-11-15 23:09:31 +00:00
@include mixins.light-theme {
color: variables.$color-ultramarine;
2024-11-06 02:05:24 +00:00
}
2024-11-15 23:09:31 +00:00
@include mixins.dark-theme {
color: variables.$color-ultramarine-pastel;
2024-11-06 02:05:24 +00:00
}
}
}
2024-11-06 02:05:24 +00:00
.About__Title {
2024-11-15 23:09:31 +00:00
@include mixins.font-body-1-bold;
2024-11-06 02:05:24 +00:00
margin: 0;
}