Skip to content

Commit

Permalink
Merge pull request #15 from iStwer/feature/color-button-fix
Browse files Browse the repository at this point in the history
Button color fix
  • Loading branch information
tomastauer authored Apr 4, 2024
2 parents f78fcd6 + 50600b6 commit 34865be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export const Button = ({ onClick, children }: Props) => (
onClick={onClick}
data-testid="button"
className="
rounded-lg bg-destructive px-6 text-primary-foreground shadow
transition hover:bg-destructive/90
rounded-lg bg-primary px-6 text-primary-foreground shadow
transition hover:bg-primary/90
focus:ring-offset-0 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring
active:bg-destructive/80
active:bg-primary/80
disabled:opacity-50"
>
{children}
Expand Down

0 comments on commit 34865be

Please sign in to comment.