Pretty proud of this main piece of UI/UX for Lifelog (working title) - distraction-free writing page with just the title and content, and everything else is faded to background until you hover over it.

Had to use pretty interesting Vue tricks like below to make this hover effect (but without using methods!):

Hover here

Show this

...
data() {
return {
hover: false,
}
},