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

30 lines
431 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;
2022-11-30 21:50:33 +00:00
box-shadow: 0 0 0 #ccc;
2022-11-18 18:33:31 +00:00
font-family: inherit;
font-size: inherit;
2022-11-30 21:50:33 +00:00
outline: none;
transition: box-shadow 0.3s;
2022-11-18 18:33:31 +00:00
width: 100%;
2022-11-30 21:50:33 +00:00
+ label {
display: none;
2022-11-30 21:50:33 +00:00
}
2022-11-18 18:33:31 +00:00
}
label {
@include media-breakpoint-up(md) {
flex: 1 60%;
}
}
.icon {
width: 2rem;
}
}