Skip to content

Commit

Permalink
fix page login layout
Browse files Browse the repository at this point in the history
  • Loading branch information
karenyov committed Apr 6, 2023
1 parent 5c739ff commit 7b21bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface Props extends ButtonProps {
color?: string;
}

export default function Button({ title, color = "primary", ...rest }: Props) {
export default function Button({ title, color = "secondary", ...rest }: Props) {
return (
<>
<ButtonBase variant={color} {...rest}>{title}</ButtonBase>
Expand Down

0 comments on commit 7b21bb2

Please sign in to comment.