There are no elements matching the selector; the element has only one child (the <form> element) and it doesn't use the `column` class.
25 lines
349 B
SCSS
25 lines
349 B
SCSS
.advanced-search {
|
|
float: left;
|
|
margin: $line-height 0;
|
|
position: inherit;
|
|
|
|
@include breakpoint(medium) {
|
|
float: right;
|
|
margin-bottom: 0;
|
|
margin-top: $line-height / 4;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
.advanced-search-form {
|
|
|
|
select {
|
|
height: $line-height * 2;
|
|
}
|
|
|
|
.column.end.clear {
|
|
clear: both;
|
|
}
|
|
}
|