Fix incorrect padding property value pair in labels.scss (#1104)

This PR corrects the change to `/_sass/labels.scss` made in 551398f92f. 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).
This commit is contained in:
Steven Conaway
2023-01-02 23:03:06 -07:00
committed by GitHub
parent 9e553b3486
commit 5471214cda

View File

@@ -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;