| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .uploader-section {
- display: flex;
- align-items: center;
- box-sizing: border-box;
- position: relative;
- .img-close {
- position: absolute;
- top: 5px;
- right: 12px;
- z-index: 99;
- font-size: 13px;
- background-color: rgba(0, 0, 0, 0.2);
- color: #fff;
- font-weight: bold;
- width: 18px;
- height: 18px;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 50%;
- }
- .uploader {
- position: relative;
- &.default {
- :global {
- .van-uploader__upload {
- width: 102px;
- height: 94px;
- background-color: #fff;
- }
- }
- .previewImg {
- width: 102px;
- height: 94px;
- border-radius: 10px;
- overflow: hidden;
- }
- }
- :global {
- .van-uploader__upload-icon,
- .van-icon__image {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
|