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!)
return (
<div class={classNames(displayClass, "homebar")}>
<a href="/index">Home</a>
<a href="index">Home</a>
<a href="Characters">Characters</a>
<a href="Links">Where you can find me</a>
<a href="Projects">Projects</a>
@ -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);
}
`