From 36a2fddfa65f412588b2137969ac596fd4bdacc1 Mon Sep 17 00:00:00 2001 From: codey Date: Thu, 31 Jul 2025 20:45:29 -0400 Subject: [PATCH] Remove Toastify icon color variable and delete unused YouTube component --- src/assets/styles/global.css | 4 ---- src/components/mdx/YouTube.astro | 20 -------------------- 2 files changed, 24 deletions(-) delete mode 100644 src/components/mdx/YouTube.astro diff --git a/src/assets/styles/global.css b/src/assets/styles/global.css index d3c222d..09c7888 100644 --- a/src/assets/styles/global.css +++ b/src/assets/styles/global.css @@ -8,10 +8,6 @@ --font-mono: "Geist Mono", ui-monospace, monospace; } -:root { - --toastify-icon-color-success: #fefdf3 !important; -} - ::selection { background-color: #47a3f3; color: #fefefe; diff --git a/src/components/mdx/YouTube.astro b/src/components/mdx/YouTube.astro deleted file mode 100644 index 1b33667..0000000 --- a/src/components/mdx/YouTube.astro +++ /dev/null @@ -1,20 +0,0 @@ ---- -import YT from "react-youtube"; - -interface Props { - videoId: string; -} - -const { videoId } = Astro.props; ---- - -