feat: highlight on hover for most els

This commit is contained in:
eggy
2023-01-28 15:59:29 -05:00
parent 577e00a870
commit a0920dfe0f
6 changed files with 66 additions and 23 deletions

View File

@@ -11,7 +11,7 @@ const latest = docs.at(-1) as BlogParsedContent;
</script>
<template>
<div class="prose dark:prose-invert flex">
<div class="prose dark:prose-invert flex onhover">
<HomeStatBox
:href="latest._path"
color="lightblue"
@@ -46,8 +46,12 @@ const latest = docs.at(-1) as BlogParsedContent;
</div>
</template>
<style scoped>
<style scoped lang="scss">
h2 {
overflow-wrap: break-word;
}
div.onhover:hover h2 {
@apply text-blue-700 dark:text-blue-400;
}
</style>