ildi-wp/dev/scss/components/_search-form.scss

25 lines
373 B
SCSS
Raw Normal View History

2018-07-24 18:52:51 -05:00
.search-form {
[type="search"],
[type="text"] {
border-radius: 0;
}
}
@media screen and (min-width: #{$screen-tablet}) {
.search-form {
display: flex;
align-content: center;
align-items: center;
justify-content: flex-end;
[type="submit"] {
flex: 0 0 auto;
}
label {
flex: 1 1 auto;
max-width: 250px;
}
}
}