Skip to content

Commit

Permalink
fix: button size
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaccoSordo committed Sep 11, 2024
1 parent eba94c1 commit f492c90
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/beacon-ui/src/components/wallet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ interface WalletProps {
const Wallet: React.FC<WalletProps> = (props: WalletProps) => {
return (
<Grid2 size={props.small ? undefined : 6} alignSelf={'baseline'}>
<Button size={'small'} variant="outlined" onClick={props.onClick}>
<Button
variant="outlined"
onClick={props.onClick}
style={props.small ? undefined : { minHeight: '80px', maxHeight: '80px' }}
>
{!props.small && (
<Grid2 container>
<h3 style={{ margin: 0 }}>{props.name}</h3>
Expand Down

0 comments on commit f492c90

Please sign in to comment.