29 lines
438 B
CSS
29 lines
438 B
CSS
.input-search {
|
|
width: 150px;
|
|
/* width: 300px; */
|
|
border: 1px solid rgb(218, 218, 218);
|
|
border-radius: 6px;
|
|
padding-left: 10px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.input-search input {
|
|
padding-top: 15px;
|
|
}
|
|
|
|
.option {
|
|
line-height: inherit;
|
|
height: 50px;
|
|
}
|
|
|
|
|
|
@media screen and (max-width: 1136px) {
|
|
.input-search {
|
|
width: 150px;
|
|
border: 1px solid rgb(218, 218, 218);
|
|
border-radius: 6px;
|
|
padding-left: 10px;
|
|
margin-right: 20px;
|
|
}
|
|
}
|