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

50 lines
730 B
SCSS
Raw Normal View History

2022-11-18 18:33:31 +00:00
.searchField {
display: flex;
justify-content: flex-end;
position: relative;
&.bordered {
border: 2px solid var(--black-100);
padding: 10px 0 12px 10px;
input {
width: 100%;
display: block;
box-sizing: border-box;
margin-right: 40px;
&:focus {
box-shadow: unset;
}
}
}
2022-11-18 18:33:31 +00:00
input {
border: none;
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
2022-12-04 14:02:45 +00:00
&:focus {
box-shadow: 0 3px 0 #ccc;
}
+ 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;
}
}