24 lines
361 B
SCSS
24 lines
361 B
SCSS
@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;
|
|
background: $ultramarine-ui-light;
|
|
|
|
transition: width 100ms ease-out;
|
|
}
|