mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-08-24 12:59:45 +08:00
* upgrade dependencies * 更改所有 saladcss 写法 * fix: 升级依赖导致的样式错误 * fix: build vant css * use es module when pack && webpack scope hoisting * fix: vue module version * delete unused npm script * fix: build:vant script not work * fix: webpack config format * fix: build minify vant.js * fix: captain ui relative link
33 lines
612 B
CSS
33 lines
612 B
CSS
@import './common/var.css';
|
|
|
|
.van-progress {
|
|
&__bar {
|
|
height: 4px;
|
|
border-radius: 4.5px;
|
|
width: 100%;
|
|
background: $c-gray-light;
|
|
position: relative;
|
|
|
|
&__finished-portion {
|
|
border-radius: 4.5px;
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
&__pivot {
|
|
padding: 2px 0;
|
|
font-size: 8px;
|
|
position: absolute;
|
|
border-radius: 6px;
|
|
width: 28px;
|
|
background-color: $c-gray-light;
|
|
line-height: 8px;
|
|
text-align: center;
|
|
top: 50%;
|
|
transform: translate3d(0, -50%, 0);
|
|
}
|
|
}
|
|
}
|