File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 10
10
</template >
11
11
<div class =" ListCard-body" >
12
12
<div class =" w-full flex flex-row justify-between" >
13
- <NuxtImg
13
+ <img
14
14
v-if =" item.logo && item.logo.dark"
15
+ loading =" lazy"
15
16
:alt =" `${item.title} logo`"
16
17
:src =" item.logo.dark"
17
18
class =" dark-img w-12 h-12 mr-4 rounded-md"
18
19
/>
19
- <NuxtImg
20
+ <img
20
21
v-if =" item.logo && item.logo.light"
22
+ loading =" lazy"
21
23
:alt =" `${item.title} logo`"
22
24
:src =" item.logo.light"
23
25
class =" light-img w-12 h-12 mr-4 rounded-md"
24
26
/>
25
- <NuxtImg
27
+ <img
26
28
v-if =" typeof item.logo === 'string'"
29
+ loading =" lazy"
27
30
:alt =" `${item.title} logo`"
28
31
:src =" item.logo || ''"
29
32
class =" w-12 h-12 mr-4 rounded-md"
Original file line number Diff line number Diff line change 16
16
<img
17
17
:src =" `${page.profile.logoLight && page.profile.logoLight.url}`"
18
18
:alt =" page.name"
19
- class =" light-img text-white"
19
+ class =" light-img text-white rounded-md "
20
20
/>
21
21
<img
22
22
:src =" `${page.profile.logoDark && page.profile.logoDark.url}`"
23
23
:alt =" page.name"
24
- class =" dark-img text-white"
24
+ class =" dark-img text-white rounded-md "
25
25
/>
26
26
</div >
27
27
<div class =" flex flex-col justify-end gap-1" >
You can’t perform that action at this time.
0 commit comments