diff --git a/example/app/components/Header.tsx b/example/app/components/Header.tsx index 307f95c..24ca74c 100644 --- a/example/app/components/Header.tsx +++ b/example/app/components/Header.tsx @@ -9,7 +9,7 @@ export const Header = () => { const getLinkClassName = (href: string) => { const isActive = pathname === href; - const baseClasses = "px-3 py-2 rounded-md text-sm font-medium transition-colors"; + const baseClasses = "px-3 py-2 text-sm font-medium transition-colors"; if (isActive) { return `${baseClasses} bg-[var(--color-sui-primary)] text-[var(--color-sui-primary-content)] font-semibold`; diff --git a/example/app/components/SwitchTheme.tsx b/example/app/components/SwitchTheme.tsx index 37ed29e..5f23f2e 100644 --- a/example/app/components/SwitchTheme.tsx +++ b/example/app/components/SwitchTheme.tsx @@ -25,16 +25,16 @@ export const SwitchTheme = ({ className }: { className?: string }) => { if (!mounted) return null; return ( -
+
{/* Custom Toggle Switch */}