style: 🎨 Change logo to WebP version as SVG one had gradient issues

This commit is contained in:
Jesse Wierzbinski 2024-04-29 14:05:01 -10:00
parent 9cb17235ff
commit 0eabb10eff
No known key found for this signature in database
3 changed files with 4 additions and 6 deletions

View file

@ -14,8 +14,7 @@
<nav class="flex items-center justify-between p-6 lg:px-8" aria-label="Global"> <nav class="flex items-center justify-between p-6 lg:px-8" aria-label="Global">
<div class="flex lg:flex-1"> <div class="flex lg:flex-1">
<NuxtLink href="/" class="-m-1.5 p-1.5"> <NuxtLink href="/" class="-m-1.5 p-1.5">
<span class="sr-only">Lysand</span> <img class="h-8 w-auto" src="https://cdn.lysand.org/logo.webp" alt="Lysand logo" />
<img class="h-8 w-auto" src="https://cdn.lysand.org/logo.svg" alt="" />
</NuxtLink> </NuxtLink>
</div> </div>
<div class="flex lg:hidden"> <div class="flex lg:hidden">
@ -40,8 +39,7 @@
class="fixed inset-y-0 right-0 z-50 w-full overflow-y-auto bg-dark-800 px-6 py-6 sm:max-w-sm sm:ring-1 sm:ring-gray-50/10"> class="fixed inset-y-0 right-0 z-50 w-full overflow-y-auto bg-dark-800 px-6 py-6 sm:max-w-sm sm:ring-1 sm:ring-gray-50/10">
<div class="flex items-center justify-between"> <div class="flex items-center justify-between">
<NuxtLink href="/" class="-m-1.5 p-1.5"> <NuxtLink href="/" class="-m-1.5 p-1.5">
<span class="sr-only">Lysand</span> <img class="h-8 w-auto" src="https://cdn.lysand.org/logo.webp" alt="Lysand Logo" />
<img class="h-8 w-auto" src="https://cdn.lysand.org/logo.svg" alt="" />
</NuxtLink> </NuxtLink>
<button type="button" class="-m-2.5 rounded-md p-2.5 text-gray-200" @click="mobileMenuOpen = false"> <button type="button" class="-m-2.5 rounded-md p-2.5 text-gray-200" @click="mobileMenuOpen = false">
<span class="sr-only">Close menu</span> <span class="sr-only">Close menu</span>

View file

@ -2,7 +2,7 @@
<aside <aside
class="fixed h-dvh z-20 md:flex hidden flex-col p-4 bg-dark-800 gap-10 max-w-20 hover:max-w-72 duration-200 group"> class="fixed h-dvh z-20 md:flex hidden flex-col p-4 bg-dark-800 gap-10 max-w-20 hover:max-w-72 duration-200 group">
<NuxtLink class="rounded w-11 h-11 ring-1 ring-white/10 hover:scale-105 duration-200" href="/"> <NuxtLink class="rounded w-11 h-11 ring-1 ring-white/10 hover:scale-105 duration-200" href="/">
<img src="https://cdn.lysand.org/logo.svg" alt="Lysand logo" /> <img src="https://cdn.lysand.org/logo.webp" alt="Lysand logo" />
</NuxtLink> </NuxtLink>
<div class="flex flex-col gap-3"> <div class="flex flex-col gap-3">
@ -131,7 +131,7 @@ const signOut = async () => {
tokenData.value.access_token, tokenData.value.access_token,
tokenData.value.access_token, tokenData.value.access_token,
) )
.catch(() => {}); .catch(() => { });
tokenData.value = null; tokenData.value = null;
me.value = null; me.value = null;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB