app-mob-picture.less 810 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
.app-mobile-picture {
    .app-mobile-picture__upload {
        width          : 80px;
        height         : 80px;
        margin         : 8px 8px 8px 0;
        display        : flex;
        align-items    : center;
        justify-content: center;
        position       : relative;

        img {
            width : 100%;
            height: 100%;
        }
    }
    .app-mobile-picture__container {
        display: flex;
    }

    .app-mobile-picture__hidden {
        .van-uploader__upload {
            display: none;
        }
    }

    .van-uploader__preview {
        position: relative;
        margin  : 8px 8px 8px 0;
        cursor  : pointer;
    }

    .van-uploader__upload {
        margin: 8px 8px 8px 0;
    }
    .van-uploader__wrapper {
        justify-content: flex-end;
    }
}