added aria-hidden attr and bumped app version

This commit is contained in:
Gani Georgiev
2024-03-23 13:12:46 +02:00
parent 0122d4f527
commit 31f2ba89e8
36 changed files with 62 additions and 57 deletions
+4 -2
View File
@@ -238,11 +238,12 @@
{#if btnClose && !popup}
<button
type="button"
aria-label="Close"
class="overlay-close"
transition:fade={{ duration: transitionSpeed }}
on:click|preventDefault={hide}
>
<i class="ri-close-line" />
<i class="ri-close-line" aria-hidden="true" />
</button>
{/if}
@@ -251,10 +252,11 @@
{#if btnClose && popup}
<button
type="button"
aria-label="Close"
class="btn btn-sm btn-circle btn-transparent btn-close m-l-auto"
on:click|preventDefault={hide}
>
<i class="ri-close-line txt-lg" />
<i class="ri-close-line txt-lg" aria-hidden="true" />
</button>
{/if}
</div>