Skip to content

Commit

Permalink
Fix config not to include reset
Browse files Browse the repository at this point in the history
  • Loading branch information
josepjaume committed May 22, 2024
1 parent ffec167 commit cd2469f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shadcn/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const buttonVariants = cva(
secondary:
"border-2 border-secondary-intermediate bg-background text-secondary-foreground hover:bg-secondary",
outline:
"border-solid border-2 border-secondary-intermediate bg-background text-secondary-foreground hover:bg-secondary",
"border-2 border-solid border-secondary-intermediate bg-background text-secondary-foreground hover:bg-secondary",
destructive:
"border-2 border-destructive-intermediate bg-destructive text-destructive-foreground hover:bg-destructive/70",
positive:
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import type { Config } from "tailwindcss"

export default {
darkMode: ["class"],
corePlugins: {
preflight: false,
},
content: [
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
Expand Down

0 comments on commit cd2469f

Please sign in to comment.