Skip to content

Commit

Permalink
[@mantine/core] Stack: Fix incorrect default justify prop (#3293)
Browse files Browse the repository at this point in the history
  • Loading branch information
stivaugoin committed Jan 6, 2023
1 parent f86ca2c commit 4bf14ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mantine-core/src/Stack/Stack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface StackProps
const defaultProps: Partial<StackProps> = {
spacing: 'md',
align: 'stretch',
justify: 'top',
justify: 'flex-start',
};

export const Stack = forwardRef<HTMLDivElement, StackProps>((props, ref) => {
Expand Down

0 comments on commit 4bf14ac

Please sign in to comment.