19 lines
378 B
SCSS
19 lines
378 B
SCSS
.main {
|
|
max-height: 40px;
|
|
input {
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
height: 100%;
|
|
border-radius: 5px;
|
|
font-family: "Montserrat", sans-serif;
|
|
box-sizing: border-box;
|
|
padding: 8px 8px 8px 10px;
|
|
color: rgb(40, 40, 40);
|
|
font-size: 15px;
|
|
transition: 0.2s;
|
|
&:hover,
|
|
&:focus {
|
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
|
}
|
|
}
|
|
}
|