Commit 2cfdc8e2 authored by Daniel Ziegenberg's avatar Daniel Ziegenberg

For consistency do not use CSS calc for simple calculation of margin-top

As discussed in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/66660
the calculation for margin-top should not be done with CSS calc.

Changelog: other
parent 5cec5cfa
......@@ -36,7 +36,7 @@
}
.with-performance-bar .whats-new-drawer {
margin-top: calc(#{$performance-bar-height} + #{$header-height});
margin-top: $performance-bar-height + $header-height;
}
.with-system-header .whats-new-drawer {
......
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