From ac8d7936dabda0775171ee99b4d4e97407417e94 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Wed, 21 Dec 2022 21:58:15 +0100 Subject: [PATCH] Changed link colour to cyan and changed cards to be same w and h, with centered text --- src/components/card.tsx | 2 +- src/index.css | 2 +- src/index.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 } }