diff --git a/src/components/molecules/SearchBar/SearchBar.tsx b/src/components/molecules/SearchBar/SearchBar.tsx index 5361cd1..02c3bf4 100644 --- a/src/components/molecules/SearchBar/SearchBar.tsx +++ b/src/components/molecules/SearchBar/SearchBar.tsx @@ -150,6 +150,10 @@ export const SearchBar = React.forwardRef( inputProps={{ 'aria-label': ariaLabel, }} + sx={{ + // Tighten the gap between search icon and text + '& .MuiInputAdornment-positionStart': { mr: 0.5 }, + }} /> {showButton && ( @@ -159,7 +163,11 @@ export const SearchBar = React.forwardRef( onClick={handleSubmit} disabled={disabled || !value.trim()} loading={loading} - sx={{ flexShrink: 0 }} + sx={{ + flexShrink: 0, + // Explicit height to match input — FormControl wrapper can offset alignment + height: size === 'medium' ? 'var(--fa-input-height-md)' : 'var(--fa-input-height-sm)', + }} > {buttonLabel}