index.scss 530 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9
.input-with-country-codes {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 24px;

    .tel-input {
        margin-bottom: 0;
        .input {
zhanghaozhe committed
10
            padding-left: 10px;
zhanghaozhe committed
11
            border: none;
zhanghaozhe committed
12 13
        }
    }
zhanghaozhe committed
14 15 16 17 18 19 20 21 22 23 24

    .country-codes {
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        color: #333;
        width: 63px;
        text-align: center;
        border-right: 1px solid #ccc;
zhanghaozhe committed
25 26
    }
}