Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yamanoku committed May 1, 2024
1 parent 5699257 commit ed72958
Showing 1 changed file with 6 additions and 4 deletions.
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>

0 comments on commit ed72958

Please sign in to comment.