vant/packages/uploader/index.less

41 lines
690 B
Plaintext

@import '../style/var';
.van-uploader {
position: relative;
display: inline-block;
&__input {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden; // to clip file-upload-button
cursor: pointer;
opacity: 0;
}
&__upload {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 80px;
height: 80px;
background-color: @white;
border: 1px dashed @gray-light;
&-icon {
color: @gray-dark;
font-size: 24px;
}
&-text {
margin-top: 10px;
color: @gray-dark;
font-size: 12px;
}
}
}