diff --git a/eduseg/src/components/Card.tsx b/eduseg/src/components/Card.tsx index 6880288..7b262cb 100644 --- a/eduseg/src/components/Card.tsx +++ b/eduseg/src/components/Card.tsx @@ -10,7 +10,7 @@ export function Card({ children, color = "gradient", className }: CardProps) { const colorVariants = { gradient: "bg-linear-to-tr from-green-secondary to-yellow-primary", darker: "bg-green-primary text-white", - yellow: "bg-yellow-tertiary", + yellow: "text-green-primary bg-yellow-tertiary", }; return ( diff --git a/eduseg/src/components/Form.tsx b/eduseg/src/components/Form.tsx index e06adeb..96674bf 100644 --- a/eduseg/src/components/Form.tsx +++ b/eduseg/src/components/Form.tsx @@ -32,7 +32,7 @@ export function Form() { return (
{formState.isSubmitSuccessful && (

OK!

diff --git a/eduseg/src/layouts/Layout.astro b/eduseg/src/layouts/Layout.astro index 47d8c33..5cabb74 100644 --- a/eduseg/src/layouts/Layout.astro +++ b/eduseg/src/layouts/Layout.astro @@ -16,14 +16,27 @@ import { Container } from "@components/Container"; -