From 5471214cdab01951530a69573728c6bc925c4693 Mon Sep 17 00:00:00 2001 From: Steven Conaway Date: Mon, 2 Jan 2023 23:03:06 -0700 Subject: [PATCH] Fix incorrect `padding` property value pair in `labels.scss` (#1104) This PR corrects the change to `/_sass/labels.scss` made in 551398f92fc125f4692e49d636d2625ca2bf3819. 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). --- _sass/labels.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sass/labels.scss b/_sass/labels.scss index a1b63c945958..85a7ba1e9c69 100644 --- a/_sass/labels.scss +++ b/_sass/labels.scss @@ -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;