Commit 9576f77c authored by Jacob Schatz's avatar Jacob Schatz

Merge branch 'scroll-links-bug' into 'master'

Fix bug where fade div covers up controls button

## What does this MR do?
Fixes bug where fade div covers up controls button

## Screenshots (if relevant)
Before:     
<img src="/uploads/a6a883839255b8e10d872759a1aa54a0/Screen_Shot_2016-05-26_at_2.22.08_PM.png" width="300px">      
After:        
<img src="/uploads/9ab53d9815470cf86f68f5a340ffc454/Screen_Shot_2016-05-26_at_2.22.42_PM.png" width="300px">

See merge request !4306
parents 03f26a40 7903e44e
......@@ -336,6 +336,16 @@
@include fade(right, rgba(255, 255, 255, 0.4), $white-light);
left: 0;
}
&.event-filter {
.fade-right {
visibility: hidden;
@media (max-width: $screen-xs-max) {
visibility: visible;
}
}
}
}
}
......@@ -346,3 +356,14 @@
top: ($header-height * 2) + 2;
}
}
.activities {
.nav-block {
border-bottom: 1px solid $border-color;
.nav-links {
border-bottom: none;
}
}
}
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