fix: shorten SearchBar height (#4766)

* fix: shorten SearchBar height

* fix positioning
This commit is contained in:
vignesh mohankumar 2022-09-30 13:27:33 -04:00 committed by GitHub
parent a3e567bc8a
commit 8a9ade5f12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,7 +34,7 @@ export const searchBarContainer = style([
'@media': {
[`screen and (min-width: ${breakpoints.lg}px)`]: {
right: `-${DESKTOP_NAVBAR_WIDTH / 2 - MAGNIFYING_GLASS_ICON_WIDTH}px`,
top: '-5px',
top: '-3px',
},
},
},
@ -57,10 +57,9 @@ export const searchBarInput = style([
color: { default: 'textPrimary', placeholder: 'textTertiary' },
border: 'none',
background: 'none',
lineHeight: '24',
height: 'full',
}),
{
lineHeight: '24px',
},
])
export const searchBarDropdown = style([