25 lines
373 B
SCSS
25 lines
373 B
SCSS
.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;
|
|
}
|
|
}
|
|
}
|