signal-desktop/stylesheets/components/ProgressBar.scss

23 lines
463 B
SCSS
Raw Normal View History

// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use '../variables';
.ProgressBar {
position: relative;
overflow: hidden;
2024-11-15 23:09:31 +00:00
background: rgba(variables.$color-ultramarine, 0.2);
height: 5px;
border-radius: 2px;
}
.ProgressBar__fill {
position: absolute;
2024-11-15 23:09:31 +00:00
background-color: variables.$color-ultramarine;
border-radius: 2px;
display: block;
height: 100%;
width: 100%;
transition: transform 500ms ease-out;
}