From 31e1f8486d3a17965145f71f8e7be82b4c2b226e Mon Sep 17 00:00:00 2001 From: Sebastian Moder Date: Tue, 10 Oct 2023 18:48:16 +0200 Subject: [PATCH] Update global styles and layout --- app/globals.css | 15 +++++++++++++++ app/layout.tsx | 2 +- components/Footer.tsx | 6 +++--- components/Institutionlogos.tsx | 5 ++--- components/Navigation.tsx | 2 +- 5 files changed, 22 insertions(+), 8 deletions(-) diff --git a/app/globals.css b/app/globals.css index 2574518..aba3ba0 100644 --- a/app/globals.css +++ b/app/globals.css @@ -2,6 +2,21 @@ @tailwind components; @tailwind utilities; +@layer base { + h1 { + @apply text-5xl font-semibold mb-8; + } + h2 { + @apply text-3xl font-semibold mb-4 text-center; + } + h3 { + @apply text-2xl font-semibold mb-4 text-left; + } + p { + @apply text-lg; + } +} + /* :root { --foreground-rgb: 0, 0, 0; --background-start-rgb: 214, 219, 220; diff --git a/app/layout.tsx b/app/layout.tsx index 205108c..f49969f 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -27,7 +27,7 @@ export default function RootLayout({ -
{children}
+
{children}