Commit 91f12bc1 authored by Filipa Lacerda's avatar Filipa Lacerda

Fixes the top position of job log topbar

The top bar of the job log was always expecting the
performance bar to be enabled. This commit adds CSS
to fix the top position for both scenarios.
parent 08e2104e
......@@ -75,7 +75,11 @@
@include build-trace-top-bar(35px);
&.has-archived-block {
top: $header-height + $performance-bar-height + 28px;
top: $header-height + 28px;
.with-performance-bar & {
top: $header-height + $performance-bar-height + 28px;
}
}
&.affix {
......
---
title: Fixes archived sticky top bar without perfomance bar
merge_request:
author:
type: fixed
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