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

zhanghaozhe committed
7 8 9
  .clearable-input-wrapper {
    margin-bottom: 0;
    flex: 1 1 auto;
zhanghaozhe committed
10

zhanghaozhe committed
11 12 13 14 15
    input {
      padding-left: 10px;
      border: none;
      width: 100%;
      padding-right: 34px;
zhanghaozhe committed
16
    }
zhanghaozhe committed
17
  }
zhanghaozhe committed
18

zhanghaozhe committed
19 20 21 22 23 24 25 26 27 28
  .country-code {
    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
29

zhanghaozhe committed
30 31
    .iconfont {
      margin-left: 3px;
zhanghaozhe committed
32
    }
zhanghaozhe committed
33 34
  }
}