Skip to content

Commit

Permalink
Prevent left side of AppHeader from expanding beyond content width.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal committed Jan 6, 2024
1 parent f560a85 commit ae5c0e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/app/AppHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const VuiAppHeader = ({ left, right, ...rest }: Props) => {
<div className="vuiAppHeader" {...rest}>
<VuiFlexContainer className="vuiAppHeader__inner" justifyContent="spaceBetween" alignItems="center">
{Boolean(left) && (
<VuiFlexItem grow={1} shrink={false}>
<VuiFlexItem grow={false} shrink={false}>
{left}
</VuiFlexItem>
)}
Expand Down

0 comments on commit ae5c0e3

Please sign in to comment.