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