From df8ff3ab20b5c35250c0e479ec3fcf24cded8ef0 Mon Sep 17 00:00:00 2001 From: Atridad Date: Wed, 23 Jul 2025 22:48:56 -0600 Subject: [PATCH] CSS compat is hard apparently --- src/pages/posts.astro | 6 ++---- src/pages/projects.astro | 29 ++++++++++++++++++----------- src/pages/talks.astro | 2 +- src/styles/global.css | 6 +++--- 4 files changed, 24 insertions(+), 19 deletions(-) diff --git a/src/pages/posts.astro b/src/pages/posts.astro index 516393e..c7ae181 100644 --- a/src/pages/posts.astro +++ b/src/pages/posts.astro @@ -14,7 +14,7 @@ const sortedPosts = posts.sort( --- -
+

@@ -23,9 +23,7 @@ const sortedPosts = posts.sort(
- {sortedPosts.map((post) => ( - - ))} + {sortedPosts.map((post) => )}
{ diff --git a/src/pages/projects.astro b/src/pages/projects.astro index daa94cb..71ace7f 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -5,18 +5,25 @@ import { projects } from "../config/data"; --- -
-

+
+

Projects

-
- {projects.map((project) => ( - - ))} +
+ {projects.map((project) => )}
- - {projects.length === 0 && ( -

No projects available yet. Check back soon!

- )} + + { + projects.length === 0 && ( +

+ No projects available yet. Check back soon! +

+ ) + }
- \ No newline at end of file + + diff --git a/src/pages/talks.astro b/src/pages/talks.astro index fda2ca5..c240132 100644 --- a/src/pages/talks.astro +++ b/src/pages/talks.astro @@ -5,7 +5,7 @@ import { talks } from "../config/data"; --- -
+

diff --git a/src/styles/global.css b/src/styles/global.css index 6cd76a2..0283fb6 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -1,6 +1,7 @@ @import "tailwindcss"; @plugin "daisyui"; @plugin "@tailwindcss/typography"; + @plugin "daisyui/theme" { name: "chaoticbisexual"; default: true; @@ -32,6 +33,5 @@ --size-selector: 0.25rem; --size-field: 0.25rem; --border: 1.5px; - --depth: 0; - --noise: 1; -} + --depth: 1; +} \ No newline at end of file