Commit ad34170b authored by Daniel Ziegenberg's avatar Daniel Ziegenberg

Fix whats new top positioning with system-header and performance-bar

- add $system-header-height to margin-top of .whats-new-drawer when
  .with-system-header present in body
- add $system-header-height and $performance-bar-height to margin-top of
  .whats-new-drawer when .with-system-header and .with-performance-bar
  present in body

Changelog: fixed
parent d2ecadaa
......@@ -39,6 +39,14 @@
margin-top: calc(#{$performance-bar-height} + #{$header-height});
}
.with-system-header .whats-new-drawer {
margin-top: $system-header-height + $header-height;
}
.with-performance-bar.with-system-header .whats-new-drawer {
margin-top: $performance-bar-height + $system-header-height + $header-height;
}
.gl-badge.whats-new-item-badge {
background-color: $purple-light;
color: $purple;
......
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