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.
This commit is contained in:
Kevin Lin 2023-01-08 22:05:16 -08:00 committed by GitHub
parent 7b29f62b49
commit 2691ff8a25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@
.search-result {
display: block;
padding-top: $sp-1 $sp-3;
padding: $sp-1 $sp-3;
&:hover,
&.active {