webapp/src/components/_shared/SearchField.module.scss

23 lines
309 B
SCSS
Raw Normal View History

2022-11-18 18:33:31 +00:00
.searchField {
display: flex;
justify-content: flex-end;
input {
border: none;
border-bottom: 1px solid #ccc;
font-family: inherit;
font-size: inherit;
width: 100%;
}
label {
@include media-breakpoint-up(md) {
flex: 1 60%;
}
}
.icon {
width: 2rem;
}
}