Commit 617148e1 authored by Robert Knight's avatar Robert Knight

Fix top bar juddering when scrolling window

Use transform3d() to force the top bar onto a new compositor layer so
that it does not judder around when scrolling the window.

The better fix here will be to make the body scroll rather than the
whole window.
parent 0e67b614
......@@ -11,6 +11,10 @@
right: 0;
top: 0;
z-index: 5;
// Force top-bar onto a new compositor layer so that it does not judder when
// the window is scrolled.
transform: translate3d(0,0,0);
}
.top-bar__inner {
......
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