Explore: Fix empty space in toolbar on smaller devices (#17110)

Removes the empty space in Explore toolbar when on mobile/tablet.

Co-Authored-By: Hugo Häggmark <hugo.haggmark@gmail.com>
pull/17121/head^2
Marcus Efraimsson 6 years ago committed by GitHub
parent 12e0616413
commit 2b32e768bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      public/sass/pages/_explore.scss

@ -31,20 +31,24 @@
flex-flow: row wrap;
justify-content: flex-start;
height: auto;
padding: 0 $dashboard-padding 0 50px;
padding: 0 $dashboard-padding;
border-bottom: 1px solid #0000;
transition-duration: 0.35s;
transition-timing-function: ease-in-out;
transition-property: box-shadow, border-bottom;
@include media-breakpoint-up(md) {
padding-left: $dashboard-padding;
}
}
.explore-toolbar-item {
position: relative;
align-self: center;
&:first-child {
padding-left: 34px;
@include media-breakpoint-up(md) {
padding-left: 0;
}
}
}
.explore-toolbar.splitted {

Loading…
Cancel
Save