diff options
Diffstat (limited to 'app/assets/stylesheets/utilities.scss')
-rw-r--r-- | app/assets/stylesheets/utilities.scss | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/assets/stylesheets/utilities.scss b/app/assets/stylesheets/utilities.scss index 176d64272c2..38842ec167e 100644 --- a/app/assets/stylesheets/utilities.scss +++ b/app/assets/stylesheets/utilities.scss @@ -43,6 +43,7 @@ @for $i from 1 through 12 { #{'.tab-width-#{$i}'} { + /* stylelint-disable-next-line property-no-vendor-prefix */ -moz-tab-size: $i; tab-size: $i; } @@ -100,3 +101,23 @@ .gl-pl-7 { padding-left: $gl-spacing-scale-7; } + +.gl-transition-property-stroke-opacity { + transition-property: stroke-opacity; +} + +.gl-transition-property-stroke { + transition-property: stroke; +} + +.gl-top-66vh { + top: 66vh; +} + +// Remove when https://gitlab.com/gitlab-org/gitlab-ui/-/issues/871 +// gets fixed on GitLab UI +.gl-sm-w-auto\! { + @media (min-width: $breakpoint-sm) { + width: auto !important; + } +} |