webapp/src/components/_shared/SearchField.module.scss
2023-07-19 00:50:27 +03:00

33 lines
449 B
SCSS

.searchField {
display: flex;
justify-content: flex-end;
input {
border: none;
box-shadow: 0 0 0 #ccc;
font-family: inherit;
font-size: inherit;
outline: none;
transition: box-shadow 0.3s;
width: 100%;
&:focus {
box-shadow: 0 3px 0 #ccc;
}
+ label {
display: none;
}
}
label {
@include media-breakpoint-up(md) {
flex: 1 60%;
}
}
.icon {
width: 2rem;
}
}