Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .vitepress/theme/components/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ onMounted(load)

<template>
<section id="hero">
<img id="uwu" />
<img id="uwu" src="/logo-uwu.svg" alt="Vue.js Kawaii Logo by @icarusgkx" width="145" height="91" />
<h1 class="tagline">
The
<span class="accent">Progressive</span>
Expand Down Expand Up @@ -309,12 +309,14 @@ html:not(.dark) .accent,
}
}

:global(.uwu #uwu) {
#uwu {
display: none;
}

.uwu #uwu {
display: block;
width: 100%;
max-width: 580px;
margin: -80px auto -20px;
aspect-ratio: 145 / 91;
content: url(/logo-uwu.svg);
}
</style>