15 lines
231 B
SCSS
15 lines
231 B
SCSS
.progressWrapper {
|
|
width: 100%;
|
|
border-radius: 100px;
|
|
overflow: hidden;
|
|
.progressBar {
|
|
height: 100%;
|
|
border-radius: 100px;
|
|
transition: all 0.3s ease-out;
|
|
&.error {
|
|
width: 100%;
|
|
background-color: #ff5733;
|
|
}
|
|
}
|
|
}
|