mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
style: fix some negative css vars (#9306)
This commit is contained in:
parent
f24c521d26
commit
cc87259790
@ -143,7 +143,7 @@
|
||||
|
||||
&__clear,
|
||||
&__right-icon {
|
||||
margin-right: -var(--van-padding-xs);
|
||||
margin-right: calc(var(--van-padding-xs) * -1);
|
||||
padding: 0 var(--van-padding-xs);
|
||||
line-height: inherit;
|
||||
}
|
||||
|
@ -23,9 +23,9 @@
|
||||
// use pseudo element to expand click area
|
||||
&::before {
|
||||
position: absolute;
|
||||
top: -var(--van-padding-xs);
|
||||
top: calc(var(--van-padding-xs) * -1);
|
||||
right: 0;
|
||||
bottom: -var(--van-padding-xs);
|
||||
bottom: calc(var(--van-padding-xs) * -1);
|
||||
left: 0;
|
||||
content: '';
|
||||
}
|
||||
@ -98,9 +98,9 @@
|
||||
// use pseudo element to expand click area
|
||||
&::before {
|
||||
top: 0;
|
||||
right: -var(--van-padding-xs);
|
||||
right: calc(var(--van-padding-xs) * -1);
|
||||
bottom: 0;
|
||||
left: -var(--van-padding-xs);
|
||||
left: calc(var(--van-padding-xs) * -1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -63,7 +63,7 @@
|
||||
.van-step__circle-container {
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
left: -var(--van-padding-xs);
|
||||
left: calc(var(--van-padding-xs) * -1);
|
||||
z-index: 1;
|
||||
padding: 0 var(--van-padding-xs);
|
||||
background-color: var(--van-white);
|
||||
|
@ -64,7 +64,7 @@
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: var(--van-padding-md);
|
||||
margin-top: -var(--van-padding-xs);
|
||||
margin-top: calc(var(--van-padding-xs) * -1);
|
||||
font-size: var(--van-tree-select-item-selected-size);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user