From 0b5eb7b1937a741f568da9bd4c7fb2ef403d2801 Mon Sep 17 00:00:00 2001 From: artie Date: Sun, 9 Jul 2023 15:23:40 +0200 Subject: [PATCH] styling --- src/components/Icons.astro | 2 +- src/layouts/Layout.astro | 23 +++++++++++++---------- tailwind.config.cjs | 4 ++-- 3 files changed, 16 insertions(+), 13 deletions(-) diff --git a/src/components/Icons.astro b/src/components/Icons.astro index c3ce167..580141d 100644 --- a/src/components/Icons.astro +++ b/src/components/Icons.astro @@ -11,7 +11,7 @@ import { Icon } from "astro-icon";
Discord Presence
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 4110b5a..a3df2b1 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,5 +1,5 @@ --- -import sakura from "../assets/sakura.png" +import sakura from "../assets/sakura.png"; interface Props { title: string; @@ -16,14 +16,14 @@ const { title } = Astro.props; {title} - + - - - - - + + + + + @@ -33,10 +33,13 @@ const { title } = Astro.props; - - + - + diff --git a/tailwind.config.cjs b/tailwind.config.cjs index b6daed4..a87ceba 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -4,7 +4,7 @@ module.exports = { theme: { extend: { fontFamily: { - sans: ['"Ubuntu"', "sans-serif"], + sans: ["Ubuntu", "sans-serif"], mono: ['"JetBrains Mono"', "monospace"], }, }, @@ -12,7 +12,7 @@ module.exports = { plugins: [ require("@catppuccin/tailwindcss")({ prefix: "ctp", - defaultFlavour: "mocha", + defaultFlavour: "macchiato", }), ], };