Commit c7ac2c71 authored by Fatih Acet's avatar Fatih Acet

Merge branch '55257-fix-sm-button-sizes' into 'master'

Fix small button line height

Closes #55257

See merge request gitlab-org/gitlab-ce!23779
parents 2b5b4d92 9c001c0d
...@@ -148,8 +148,8 @@ ...@@ -148,8 +148,8 @@
&.btn-xs { &.btn-xs {
padding: 2px $gl-btn-padding; padding: 2px $gl-btn-padding;
font-size: $gl-btn-small-font-size; font-size: $gl-btn-xs-font-size;
line-height: $gl-btn-small-line-height; line-height: $gl-btn-xs-line-height;
} }
&.btn-success, &.btn-success,
......
...@@ -371,7 +371,9 @@ $gl-btn-line-height: 16px; ...@@ -371,7 +371,9 @@ $gl-btn-line-height: 16px;
$gl-btn-vert-padding: 8px; $gl-btn-vert-padding: 8px;
$gl-btn-horz-padding: 12px; $gl-btn-horz-padding: 12px;
$gl-btn-small-font-size: 13px; $gl-btn-small-font-size: 13px;
$gl-btn-small-line-height: 13px; $gl-btn-small-line-height: 18px;
$gl-btn-xs-font-size: 13px;
$gl-btn-xs-line-height: 13px;
/* /*
* Badges * Badges
......
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