amis/scss/components/_progress.scss

18 lines
314 B
SCSS
Raw Normal View History

2020-10-24 10:18:02 +08:00
.#{$ns}Progress {
height: 10px;
background: #ebebeb;
overflow: hidden;
&-bar {
float: left;
width: 0;
height: 100%;
font-size: 12px;
line-height: 10px;
color: #fff;
text-align: center;
background: var(--primary);
transition: width var(--animation-duration) ease;
2020-10-24 10:18:02 +08:00
}
}