28 lines
476 B
SCSS
Vendored
28 lines
476 B
SCSS
Vendored
.input_container {
|
|
border: 1px solid #efefef;
|
|
border-radius: 5px;
|
|
background-color: #fff;
|
|
display: flex;
|
|
height: 48px;
|
|
|
|
font-family: Montserrat, serif;
|
|
font-size: 16px;
|
|
line-height: 1.25;
|
|
color: #1a1a1a;
|
|
|
|
.input_prefix, .input_postfix {
|
|
padding: 13px 10px 13px 15px;
|
|
}
|
|
|
|
input {
|
|
border: none;
|
|
padding: 13px 5px;
|
|
|
|
font-family: Montserrat, serif;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
line-height: 1.25;
|
|
color: #1a1a1a;
|
|
}
|
|
}
|