btn
Version:
A Vue.js project
31 lines (30 loc) • 640 B
CSS
@import './color-common.css';
.van-cell--required::before{
content:'';
}
.van-cell {
padding: 0.5rem 1rem;
margin:0.5rem 0;
color: var(--C5_800);
font-size: 1rem;
}
/*.van-cell:not(:last-child)::after{}*/
.van-cell::after{
content: ' ';
position: absolute;
pointer-events: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
left: 1rem;
right: 1rem;
bottom: 0;
-webkit-transform: scaleY(.5);
transform: scaleY(.5);
border-bottom: 1px solid var(--gray);
}
.van-icon-clear.van-field__clear{
width:1.5rem;
padding:0;
line-height: inherit;
margin-right: 0.5rem;
}