Skip to content

Commit d74c1c7

Browse files
cypherpepemehtavishwa30
authored andcommitted
Fix box-shadow value in .wy-side-nav-search custom.css
The box-shadow property in .wy-side-nav-search was incorrectly specified with four values, omitting the necessary units.
1 parent 795a0ba commit d74c1c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/_static/css/custom.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ small * {
229229
.wy-side-nav-search {
230230
background-color: transparent !important;
231231
color: var(--color-a) !important;
232-
box-shadow: 0 4 4 0 var(--color-a);
232+
box-shadow: 0 4px 4px 0 var(--color-a);
233233
border-bottom: 1px solid var(--color-d) !important;
234234
}
235235

@@ -823,4 +823,4 @@ a.skip-to-content:focus {
823823
#content {
824824
scroll-margin-top: 6rem;
825825
scroll-behavior: smooth;
826-
}
826+
}

0 commit comments

Comments
 (0)