Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 854bcce

Browse files
fix(site): Fix filter hover (#6624)
1 parent a7c734c commit 854bcce

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

site/src/components/SearchBarWithFilter/SearchBarWithFilter.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,13 @@ const useStyles = makeStyles<Theme, StyleProps>((theme) => ({
174174
},
175175
buttonRoot: {
176176
border: `1px solid ${theme.palette.divider}`,
177-
borderRight: "0px",
178177
borderRadius: `${theme.shape.borderRadius}px 0px 0px ${theme.shape.borderRadius}px`,
179178
flexShrink: 0,
179+
marginRight: -1,
180+
181+
"&:hover": {
182+
zIndex: 1,
183+
},
180184
},
181185
errorRoot: {
182186
color: theme.palette.error.main,

0 commit comments

Comments
 (0)