From 2691ff8a25de3a2def98955b0b18e20872b80efd Mon Sep 17 00:00:00 2001 From: Kevin Lin <hello@kevinl.info> Date: Sun, 8 Jan 2023 22:05:16 -0800 Subject: [PATCH] Fix incorrect `padding` property value pair in `search.scss` (#1123) This PR corrects the change to `/_sass/search.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). I just reviewed 551398f and believe that this should be the other half of the fix proposed by just-the-docs/just-the-docs#1104. --- _sass/search.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sass/search.scss b/_sass/search.scss index 2c46e8cd..6cfe95e3 100644 --- a/_sass/search.scss +++ b/_sass/search.scss @@ -123,7 +123,7 @@ .search-result { display: block; - padding-top: $sp-1 $sp-3; + padding: $sp-1 $sp-3; &:hover, &.active { -- GitLab