Files
grecia/app/assets/stylesheets/admin/search.css
Javi Martín 49c22b880c Use CSS to style the search component
We simplify the view, and so make it easier to customize.
2020-12-04 19:57:05 +01:00

18 lines
262 B
CSS

.admin [role=search] {
display: flex;
[type="submit"] {
@include button($background: $link);
border-radius: 0;
font-size: 1rem;
&[disabled] {
@include button-disabled;
}
}
@include breakpoint(medium) {
width: 50%;
}
}