Skip to content

Commit

Permalink
fix(buttons): adjust classes
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonsaldan committed Jan 12, 2025
1 parent ecc3a5a commit 4144037
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const variants = {
),
outline: clsx(
'relative inline-flex items-center justify-center px-12 py-[calc(theme(spacing.2)-1px)]',
'rounded-full border border-transparent bg-gray-400/40 shadow-md hover:bg-white/95 hover:text-gray-950',
'whitespace-nowrap text-base font-medium text-white',
'rounded-full border border-transparent bg-black shadow-md hover:bg-white/95 hover:text-gray-950 dark:hover:text-white',
'whitespace-nowrap text-base font-medium text-white dark:text-black',
'duration-350 transition ease-in-out data-[disabled]:bg-gray-950 data-[disabled]:opacity-40',
'isolate z-10',
),
Expand Down
2 changes: 1 addition & 1 deletion src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function CallToAction() {
<div className="mt-8">
<Button
variant="outline"
className="w-full transition-colors duration-500 sm:w-auto dark:bg-zinc-900 dark:hover:bg-zinc-950"
className="w-full transition-colors duration-500 sm:w-auto dark:bg-white dark:hover:bg-zinc-950"
href="/installation"
>
Get Started
Expand Down

0 comments on commit 4144037

Please sign in to comment.