Hide instrument filter on mobile
This commit is contained in:
parent
45b9e7e57b
commit
445f09e16a
|
|
@ -39,7 +39,10 @@ export default {
|
|||
@import '~styles/helpers';
|
||||
|
||||
.instrument-filter {
|
||||
display: flex;
|
||||
display: none;
|
||||
@include desktop {
|
||||
display: flex;
|
||||
}
|
||||
flex-direction: column;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -87,14 +87,12 @@ export default {
|
|||
|
||||
.instrument-overview {
|
||||
display: grid;
|
||||
//grid-template-rows: auto auto 1fr;
|
||||
grid-template-columns: 300px auto;
|
||||
grid-column-gap: $small-spacing;
|
||||
//@include centered(800px);
|
||||
padding: 0 $small-spacing;
|
||||
|
||||
&__filter {
|
||||
@include desktop {
|
||||
grid-template-columns: 300px auto;
|
||||
}
|
||||
grid-column-gap: $small-spacing;
|
||||
padding: 0 $small-spacing;
|
||||
box-sizing: border-box;
|
||||
|
||||
&__list {
|
||||
padding: $large-spacing 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue