Commit 571a49ba authored by vignesh mohankumar's avatar vignesh mohankumar Committed by GitHub

fix: no cursor pointer on SearchBar input (#4743)

parent 077437e1
...@@ -45,7 +45,6 @@ export const searchBar = style([ ...@@ -45,7 +45,6 @@ export const searchBar = style([
sprinkles({ sprinkles({
color: 'textTertiary', color: 'textTertiary',
paddingX: '16', paddingX: '16',
cursor: 'pointer',
background: 'backgroundSurface', background: 'backgroundSurface',
}), }),
]) ])
...@@ -85,10 +84,10 @@ export const suggestionRow = style([ ...@@ -85,10 +84,10 @@ export const suggestionRow = style([
justifyContent: 'space-between', justifyContent: 'space-between',
paddingY: '8', paddingY: '8',
paddingX: '16', paddingX: '16',
cursor: 'pointer',
}), }),
{ {
':hover': { ':hover': {
cursor: 'pointer',
background: vars.color.lightGrayOverlay, background: vars.color.lightGrayOverlay,
}, },
textDecoration: 'none', textDecoration: 'none',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment