Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/layout.scss')
-rw-r--r--app/assets/stylesheets/framework/layout.scss8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/layout.scss b/app/assets/stylesheets/framework/layout.scss
index f79dc38f2f7..fb05f8575ef 100644
--- a/app/assets/stylesheets/framework/layout.scss
+++ b/app/assets/stylesheets/framework/layout.scss
@@ -140,7 +140,7 @@ body {
}
.with-performance-bar .layout-page {
- margin-top: $header-height + $performance-bar-height;
+ margin-top: calc(#{$header-height} + #{$performance-bar-height});
}
.fullscreen-layout {
@@ -201,3 +201,9 @@ body {
padding-right: 0;
}
}
+
+@include media-breakpoint-up(sm) {
+ .logged-out-marketing-header-candidate {
+ --header-height: 72px;
+ }
+}