input.scss 632 Bytes
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2 3 4 5 6 7 8 9 10
.input-wrapper {
    position: relative;
    width: 300px;
    height: 46px;
    margin: 0 auto;

    .input {
        width: 100%;
        height: 100%;
zhanghaozhe committed
11
        padding: 15px 0 15px 34px;
zhanghaozhe committed
12 13 14
        border: 1px solid $bg_ccc;
        border-radius: 3px;
        -webkit-appearance: none;
zhanghaozhe committed
15
        font-size: $font_16;
zhanghaozhe committed
16 17 18 19 20

        &::-webkit-input-placeholder {
            font-size: $font_16;
            color: $color_999;
        }
21 22 23 24 25 26 27
    }
    .iconfont {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: $font_20;
        color: $color_bbb;
zhanghaozhe committed
28 29
    }
}