Skip to content

Commit 4144037

Browse files
committed
fix(buttons): adjust classes
1 parent ecc3a5a commit 4144037

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/button.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const variants = {
1818
),
1919
outline: clsx(
2020
'relative inline-flex items-center justify-center px-12 py-[calc(theme(spacing.2)-1px)]',
21-
'rounded-full border border-transparent bg-gray-400/40 shadow-md hover:bg-white/95 hover:text-gray-950',
22-
'whitespace-nowrap text-base font-medium text-white',
21+
'rounded-full border border-transparent bg-black shadow-md hover:bg-white/95 hover:text-gray-950 dark:hover:text-white',
22+
'whitespace-nowrap text-base font-medium text-white dark:text-black',
2323
'duration-350 transition ease-in-out data-[disabled]:bg-gray-950 data-[disabled]:opacity-40',
2424
'isolate z-10',
2525
),

src/components/footer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function CallToAction() {
1818
<div className="mt-8">
1919
<Button
2020
variant="outline"
21-
className="w-full transition-colors duration-500 sm:w-auto dark:bg-zinc-900 dark:hover:bg-zinc-950"
21+
className="w-full transition-colors duration-500 sm:w-auto dark:bg-white dark:hover:bg-zinc-950"
2222
href="/installation"
2323
>
2424
Get Started

0 commit comments

Comments
 (0)