diff --git a/quartz/components/Homebar.tsx b/quartz/components/Homebar.tsx index 97540a6..c76ff22 100644 --- a/quartz/components/Homebar.tsx +++ b/quartz/components/Homebar.tsx @@ -8,11 +8,11 @@ const Homebar: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzCompone const baseDir = pathToRoot(fileData.slug!) return (
- Home - Characters - Where you can find me - Projects - Articles + Home + Characters + Where you can find me + Projects + Articles
) } @@ -23,7 +23,7 @@ Homebar.css = ` display: flex; flex-direction: row; } -.homebar > a { +.hb-button { 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 > a:hover { +.hb-button:hover { background-color: rgba(100,100,100, 0.5); } `