43 lines
602 B
Plaintext
43 lines
602 B
Plaintext
/* components/progress/index.wxss */
|
|
@import "../styles/_base.less";
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.progress {
|
|
position: relative;
|
|
width: 100%;
|
|
transition: all 0.25s ease-in-out;
|
|
}
|
|
|
|
.percent {
|
|
position: absolute;
|
|
z-index: 1;
|
|
}
|
|
|
|
.active {
|
|
background-color: @progress-active-color;
|
|
}
|
|
|
|
.text {
|
|
color: @progress-active-color;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.background {
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
.header {
|
|
position: absolute !important;
|
|
z-index: 2;
|
|
}
|
|
|
|
.slot {
|
|
position: absolute;
|
|
z-index: 2;
|
|
} |