signal-desktop/sticker-creator/elements/PageHeader.scss

26 lines
493 B
SCSS
Raw Normal View History

2020-10-30 20:34:04 +00:00
// Copyright 2019-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2019-12-17 20:25:57 +00:00
@import '../../stylesheets/variables';
@import '../mixins';
.base {
height: 47px;
width: 100%;
border-bottom-width: 1px;
border-bottom-style: solid;
padding: 0 16px;
display: flex;
flex-direction: row;
align-items: center;
flex-shrink: 0;
@include light-theme() {
border-bottom-color: $color-gray-15;
}
@include dark-theme() {
border-bottom-color: $color-gray-75;
}
}