diff --git a/src/components/card.tsx b/src/components/card.tsx index fcf61fe..e9fd744 100644 --- a/src/components/card.tsx +++ b/src/components/card.tsx @@ -9,7 +9,7 @@ const Card: Component = ({ children, className, title, to, newTab = f <>
+ class={ `relative bg-gradient-to-r from-cyan-600 to-cyan-500 h-32 w-64 rounded-2xl ${ className }` }>

{ title }

{ children } diff --git a/src/index.css b/src/index.css index a53f322..82e4497 100644 --- a/src/index.css +++ b/src/index.css @@ -10,7 +10,7 @@ } .link { - @apply hover:underline text-blue-500; + @apply hover:underline text-cyan-500; } } diff --git a/src/index.tsx b/src/index.tsx index 973f5dc..a33c722 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -26,7 +26,7 @@ const HomePage: Component = () => {
{ card => - { card.children } + { card.children } }