Skip to content

Commit a076e7f

Browse files
authored
Fixed an rendering issue caused by applied filters on the site (#1905)
1 parent 42714cc commit a076e7f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/src/components/DocWrapper.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,9 @@ export default ({
178178
'none',
179179
`1px solid ${colors.lighten(0.25, colors.border)}`
180180
],
181-
filter: 'grayscale(100%)'
181+
filter: 'grayscale(100%)',
182+
// needed for the filter above, Chrome messed up layers without it
183+
zIndex: 1
182184
})}
183185
>
184186
<Search />

0 commit comments

Comments
 (0)