From 7904e9d884e920620b67b81c60f1dfc1760671cc Mon Sep 17 00:00:00 2001 From: Heli-o Date: Sun, 7 Apr 2024 14:15:42 +0200 Subject: [PATCH] hopefully fixed? --- quartz/components/Homebar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quartz/components/Homebar.tsx b/quartz/components/Homebar.tsx index 6d8fe9e..d4196b9 100644 --- a/quartz/components/Homebar.tsx +++ b/quartz/components/Homebar.tsx @@ -8,7 +8,7 @@ const Homebar: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzCompone const baseDir = pathToRoot(fileData.slug!) return (
- Home + Home Characters Where you can find me Projects @@ -23,7 +23,7 @@ Homebar.css = ` display: flex; flex-direction: row; } -.homebar > * { +.homebar > a { border-radius: 25%; background-color: rgba(100,100,100, 0.3); padding: 0.2rem 0.4rem; @@ -32,7 +32,7 @@ Homebar.css = ` width: fit-content; height: fit-content; } -.homebar > *:hover { +.homebar > a:hover { background-color: rgba(100,100,100, 0.5); } `