Skip to content

Commit 6e41996

Browse files
authored
fix: vertical alignment (#784)
1 parent d92631b commit 6e41996

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/next/src/components/AddressSelector/AddressSelector.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ export const AddressSelector: FC<Props> = ({ type, account, onChange }) => {
2828
const { label } = getChainLabelAndIconByAddressType(
2929
value as AddressType,
3030
);
31-
return <Typography variant="subtitle3">{label}</Typography>;
31+
return (
32+
<Typography variant="subtitle3" lineHeight={1}>
33+
{label}
34+
</Typography>
35+
);
3236
}}
3337
>
3438
{OPTIONS.map((item) => {

0 commit comments

Comments
 (0)