Commit e360c3ef authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '327867-fix-sticky-filters-not-working-on-vulnerability-report' into 'master'

Fix sticky filters not working on vulnerability report

See merge request gitlab-org/gitlab!77647
parents 28a2e725 d57da00d
...@@ -2,7 +2,9 @@ $security-filter-height: 90px; ...@@ -2,7 +2,9 @@ $security-filter-height: 90px;
$selection-summary-height: 66px; $selection-summary-height: 66px;
$selection-summary-with-error-height: 118px; $selection-summary-with-error-height: 118px;
@mixin sticky-top-positioning($extra: 0) { // Values used with calc must have units, so we need $extra to default to "0px" instead of "0"
// stylelint-disable-next-line length-zero-no-unit
@mixin sticky-top-positioning($extra: 0px) {
top: calc(#{$header-height} + #{$extra}); top: calc(#{$header-height} + #{$extra});
.with-performance-bar & { .with-performance-bar & {
......
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