index.scss 455 Bytes
Newer Older
zhanghaozhe committed
1
.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 10 11
  .tel-input {
    margin-bottom: 0;
    .input {
      padding-left: 10px;
      border: none;
zhanghaozhe committed
12
    }
zhanghaozhe committed
13
  }
zhanghaozhe committed
14

zhanghaozhe committed
15 16 17 18 19 20 21 22 23 24 25 26
  .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;
  }
}