Skip to content
Snippets Groups Projects
Unverified Commit 2691ff8a authored by Kevin Lin's avatar Kevin Lin Committed by GitHub
Browse files

Fix incorrect `padding` property value pair in `search.scss` (#1123)

This PR corrects the change to `/_sass/search.scss` made in 551398f9. 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 551398f9 and believe that this should be the other half of the fix proposed by just-the-docs/just-the-docs#1104.
parent 7b29f62b
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@
.search-result {
display: block;
padding-top: $sp-1 $sp-3;
padding: $sp-1 $sp-3;
&:hover,
&.active {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment