Skip to content

Commit

Permalink
fix: remove tabindex=-1
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokada committed Jan 28, 2024
1 parent 86a210d commit ff4c440
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/components/dropdown/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<div class="mx-auto w-48">
<Button onclick={toggle}
>Dropdown
<ChevronDownSolid class="ms-2 h-3 w-3 text-white dark:text-white" tabindex="-1" />
<ChevronDownSolid class="ms-2 h-3 w-3 text-white dark:text-white" />
</Button>
<div class="relative">
<Dropdown {isOpen} divclass="absolute -left-[27px]">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/components/dropdown/md/dropdown1.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<div class="mx-auto w-48">
<Button onclick={toggle}
>Dropdown
<ChevronDownSolid class="ms-2 h-3 w-3 text-white dark:text-white" tabindex="-1" />
<ChevronDownSolid class="ms-2 h-3 w-3 text-white dark:text-white" />
</Button>
<div class="relative">
<Dropdown {isOpen} divclass="absolute -left-[27px]">
Expand Down

0 comments on commit ff4c440

Please sign in to comment.