mirror of
https://github.com/snachodog/just-the-docs.git
synced 2026-06-04 06:00:12 -06:00
Fix incorrect padding property value pair in search.scss (#1123)
This PR corrects the change to `/_sass/search.scss` made in551398f. 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 reviewed551398fand 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:
+1
-1
@@ -123,7 +123,7 @@
|
|||||||
|
|
||||||
.search-result {
|
.search-result {
|
||||||
display: block;
|
display: block;
|
||||||
padding-top: $sp-1 $sp-3;
|
padding: $sp-1 $sp-3;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&.active {
|
&.active {
|
||||||
|
|||||||
Reference in New Issue
Block a user