Skip to content

Commit

Permalink
Merge pull request #22 from gisce/fix/adjust-dropdown-button-height
Browse files Browse the repository at this point in the history
fix: adjust DropdownButton maxHeight for improved styling
  • Loading branch information
mguellsegarra authored Jan 22, 2025
2 parents 4c61fb4 + 209ad54 commit 7199ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ui/Dropdown/DropdownButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const DropdownButton: React.FC<DropdownButtonProps> = memo(
({ icon, label, ...restProps }: DropdownButtonProps) => {
return (
<Dropdown {...restProps}>
<Button>
<Button style={{ maxHeight: 28 }}>
{icon} {label} <DownOutlined />
</Button>
</Dropdown>
Expand Down

0 comments on commit 7199ad0

Please sign in to comment.