Skip to content

Commit

Permalink
Unifying font weights across EuiTitle sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
daveyholler authored and cchaos committed Mar 4, 2020
1 parent 1f1a56e commit 1d7070e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
@if $size == 'xxxs' {
@include euiFontSizeXS;
@include lineHeightFromBaseline(3);
font-weight: $euiFontWeightSemiBold;
font-weight: $euiFontWeightBold;
letter-spacing: 0;
} @else if $size == 'xxs' {
@include euiFontSizeS;
@include lineHeightFromBaseline(3);
font-weight: $euiFontWeightSemiBold;
font-weight: $euiFontWeightBold;
letter-spacing: 0;
} @else if $size == 'xs' {
@include euiFontSize;
@include lineHeightFromBaseline(3);
font-weight: $euiFontWeightSemiBold;
font-weight: $euiFontWeightBold;
letter-spacing: 0;
} @else if $size == 's' {
@include euiFontSizeL;
Expand Down

0 comments on commit 1d7070e

Please sign in to comment.