diff options
Diffstat (limited to 'app/assets/stylesheets/utilities.scss')
-rw-r--r-- | app/assets/stylesheets/utilities.scss | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/app/assets/stylesheets/utilities.scss b/app/assets/stylesheets/utilities.scss index ab330ed69c6..d424dcbf8f2 100644 --- a/app/assets/stylesheets/utilities.scss +++ b/app/assets/stylesheets/utilities.scss @@ -110,7 +110,7 @@ // This utility is used to force the z-index to match that of dropdown menu's .gl-z-dropdown-menu\! { - z-index: 300 !important; + z-index: $zindex-dropdown-menu !important; } .gl-flex-basis-quarter { @@ -143,3 +143,17 @@ flex-direction: column !important; } } + +// Will be moved to @gitlab/ui in https://gitlab.com/gitlab-org/gitlab-ui/-/issues/1165 +.gl-xs-mb-4 { + @media (max-width: $breakpoint-sm) { + margin-bottom: $gl-spacing-scale-4; + } +} + +// Same as above +.gl-xs-mb-4\! { + @media (max-width: $breakpoint-sm) { + margin-bottom: $gl-spacing-scale-4 !important; + } +} |