31 lines
517 B
SCSS
31 lines
517 B
SCSS
.searchInput.searchInput {
|
|
min-height: 40px;
|
|
background-color: #e5e7eb;
|
|
padding: 10px 44px 10px 20px;
|
|
font-size: 14px;
|
|
|
|
&::placeholder {
|
|
color: #adaebc;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
|
|
.searchInputContainer {
|
|
position: relative;
|
|
min-width: 0px;
|
|
max-width: 250px;
|
|
}
|
|
|
|
.searchButton {
|
|
position: absolute;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
background-color: transparent;
|
|
padding: 0;
|
|
right: 15px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|