0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00
wagtail/client/scss/components/_progressbar.scss
Thibaud Colas af942a27e4
Reformat codebase with Prettier (#7912)
- Automated reformatting
- Manually change code where Prettier reformatting causes issues
- Revert "Disable Prettier formatting in CI for now"
2022-02-04 11:57:55 +00:00

26 lines
506 B
SCSS

.progress {
border-radius: 1.2em;
background-color: $color-teal-dark;
border: 1px solid $color-teal;
opacity: 0;
&.active {
@include transition(opacity 0.3s ease);
opacity: 1;
}
.bar {
@include transition(width 0.3s ease);
border-radius: 1.5em;
overflow: hidden;
box-sizing: border-box;
text-align: right;
line-height: 1.2em;
color: $color-white;
font-size: 0.85em;
background-color: $color-teal;
height: 1.2em;
padding-right: 1em;
}
}