Commit ed2c4307 authored by Eduardo Sanz García's avatar Eduardo Sanz García Committed by Lyza Gardner

Reposition notebook's user-filter on narrow viewports

Moved the user-filter below the heading and added a little bit of top
and bottom space.
parent 243c06d3
...@@ -4,18 +4,21 @@ ...@@ -4,18 +4,21 @@
.NotebookView { .NotebookView {
display: grid; display: grid;
row-gap: var.$layout-space--xsmall; row-gap: var.$layout-space--small;
grid-template-areas: grid-template-areas:
'heading' 'heading'
'filters'
'results' 'results'
'items'; 'items';
&__heading { &__heading {
line-height: 1;
grid-area: heading; grid-area: heading;
} }
&__filters { &__filters {
grid-area: filters; grid-area: filters;
justify-self: start;
} }
&__results { &__results {
...@@ -32,6 +35,7 @@ ...@@ -32,6 +35,7 @@
} }
@include responsive.tablet-and-up { @include responsive.tablet-and-up {
row-gap: var.$layout-space--xsmall;
grid-template-areas: grid-template-areas:
'heading heading' 'heading heading'
'filters results' 'filters results'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment