You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
505 B
26 lines
505 B
@import '../style/var';
|
|
|
|
.van-pull-refresh {
|
|
overflow: hidden;
|
|
user-select: none;
|
|
|
|
&__track {
|
|
position: relative;
|
|
height: 100%;
|
|
transition-property: transform;
|
|
}
|
|
|
|
&__head {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
height: @pull-refresh-head-height;
|
|
overflow: hidden;
|
|
color: @pull-refresh-head-text-color;
|
|
font-size: @pull-refresh-head-font-size;
|
|
line-height: @pull-refresh-head-height;
|
|
text-align: center;
|
|
transform: translateY(-100%);
|
|
}
|
|
}
|