mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
34 lines
694 B
CSS
34 lines
694 B
CSS
@import './common/var.css';
|
|
|
|
@component-namespace zan {
|
|
@b progress {
|
|
@e bar {
|
|
height: 4px;
|
|
border-radius: 4.5px;
|
|
width: 100%;
|
|
background: $c-gray-light;
|
|
position: relative;
|
|
|
|
@e finished-portion {
|
|
border-radius: 4.5px;
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 0;
|
|
display: inline-block;
|
|
}
|
|
@e 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);
|
|
}
|
|
}
|
|
}
|
|
}
|