Skip to content

Commit

Permalink
Fix incorrect padding property value pair in labels.scss (mmistak…
Browse files Browse the repository at this point in the history
…es#1104)

This PR corrects the change to `/_sass/labels.scss` made in 551398f. This change tried to set the `padding-**top**` property to **two** values rather than set the `padding` property to these values (to represent the vertical and horizontal padding values).
  • Loading branch information
SConaway authored Jan 3, 2023
1 parent 9e553b3 commit 5471214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _sass/labels.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.label,
.label-blue {
display: inline-block;
padding-top: 0.16em 0.56em;
padding: 0.16em 0.56em;
margin-right: $sp-2;
margin-left: $sp-2;
color: $white;
Expand Down

0 comments on commit 5471214

Please sign in to comment.