mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
fix: image alt tags
This commit is contained in:
parent
6efd3c8b55
commit
608aad56dd
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ watchEffect(() => {
|
|||
<template>
|
||||
<div flex flex-col>
|
||||
<button border="b base" z-1>
|
||||
<img h-50 w-full object-cover :src="account.header" @click="previewHeader">
|
||||
<img h-50 w-full object-cover :src="account.header" alt="" @click="previewHeader">
|
||||
</button>
|
||||
<div p4 mt--18 flex flex-col gap-4>
|
||||
<div relative>
|
||||
|
|
|
@ -5,7 +5,7 @@ const sub = process.dev ? 'dev' : window.location.hostname.includes('deploy-prev
|
|||
<template>
|
||||
<!-- Use external to force refresh page and jump to top of timeline -->
|
||||
<NuxtLink flex px3 py2 items-center text-2xl gap-2 hover:bg-active focus-visible:ring="2 current" rounded-full to="/" external>
|
||||
<img aria-label="Elk Logo" src="/logo.svg" w-10 h-10>
|
||||
<img alt="Elk Logo" src="/logo.svg" w-10 h-10>
|
||||
<div>
|
||||
Elk <sup text-sm italic text-secondary mt-1>{{ sub }}</sup>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue