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

28 lines
446 B
SCSS
Raw Normal View History

2021-05-28 16:15:17 +00:00
// Copyright 2019-2021 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
2019-12-17 20:25:57 +00:00
@import '../../stylesheets/variables';
@import '../mixins';
.base {
height: 4px;
width: 100%;
max-width: 448px;
@include light-theme() {
background: $color-gray-15;
}
@include dark-theme() {
background: $color-gray-75;
}
}
.bar {
height: 4px;
width: 0px;
2021-05-28 16:15:17 +00:00
background: $color-ultramarine;
2019-12-17 20:25:57 +00:00
transition: width 100ms ease-out;
}