hopefully fixed?

This commit is contained in:
Heli-o 2024-04-07 14:15:42 +02:00
parent 37cfa53d39
commit 7904e9d884

View file

@ -8,7 +8,7 @@ const Homebar: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzCompone
const baseDir = pathToRoot(fileData.slug!) const baseDir = pathToRoot(fileData.slug!)
return ( return (
<div class={classNames(displayClass, "homebar")}> <div class={classNames(displayClass, "homebar")}>
<a href="/index">Home</a> <a href="index">Home</a>
<a href="Characters">Characters</a> <a href="Characters">Characters</a>
<a href="Links">Where you can find me</a> <a href="Links">Where you can find me</a>
<a href="Projects">Projects</a> <a href="Projects">Projects</a>
@ -23,7 +23,7 @@ Homebar.css = `
display: flex; display: flex;
flex-direction: row; flex-direction: row;
} }
.homebar > * { .homebar > a {
border-radius: 25%; border-radius: 25%;
background-color: rgba(100,100,100, 0.3); background-color: rgba(100,100,100, 0.3);
padding: 0.2rem 0.4rem; padding: 0.2rem 0.4rem;
@ -32,7 +32,7 @@ Homebar.css = `
width: fit-content; width: fit-content;
height: fit-content; height: fit-content;
} }
.homebar > *:hover { .homebar > a:hover {
background-color: rgba(100,100,100, 0.5); background-color: rgba(100,100,100, 0.5);
} }
` `