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/badges.scss')
-rw-r--r--app/assets/stylesheets/framework/badges.scss9
1 files changed, 5 insertions, 4 deletions
diff --git a/app/assets/stylesheets/framework/badges.scss b/app/assets/stylesheets/framework/badges.scss
index 7c3684f7c2e..7fc0b93c61c 100644
--- a/app/assets/stylesheets/framework/badges.scss
+++ b/app/assets/stylesheets/framework/badges.scss
@@ -31,19 +31,20 @@
.gl-badge.sm,
.gl-badge.md,
.gl-badge.lg {
- @include gl-font-sm;
+ font-size: $gl-font-size-sm;
padding-block: $gl-spacing-scale-1;
padding-inline: calc(#{$gl-spacing-scale-3} - 2px);
> .gl-icon {
- @include gl-ml-0;
+ margin-left: 0;
}
}
// These changes will be moved to
// GitLab UI's button component
.gl-button .gl-badge {
- @include gl-py-0;
+ padding-top: 0;
+ padding-bottom: 0;
}
// These changes will be moved to
@@ -62,6 +63,6 @@
// speciality this FF adds
// the utility class gets overriden
.gl-badge.ci-icon {
- @include gl-p-2;
+ padding: $gl-spacing-scale-2;
}
}