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

26 lines
410 B
SCSS
Raw Permalink Normal View History

2018-07-24 18:52:51 -05:00
.search-form {
2018-08-10 15:08:34 -05:00
display: flex;
align-content: center;
align-items: center;
justify-content: flex-start;
margin: $gutter 0;
width: 100%;
[type="submit"] {
flex: 0 0 auto;
border-left-width: 0;
}
label {
flex: 1 1 auto;
width: 100%;
2018-07-24 18:52:51 -05:00
}
}
@media screen and (min-width: #{$screen-tablet}) {
.search-form {
justify-content: flex-end;
2018-08-10 15:08:34 -05:00
label { max-width: 250px; }
2018-07-24 18:52:51 -05:00
}
}