Skip to content

Commit

Permalink
♿️ Improve score
Browse files Browse the repository at this point in the history
  • Loading branch information
penrodlol committed May 26, 2024
1 parent 9ca5b6d commit 8423634
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ui/separator.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ type Props = HTMLAttributes<'div'> & VariantProps<typeof variants>;
const { class: className, orientation, ...props } = Astro.props;
---

<div {...props} role="none" class={variants({ orientation, className })}></div>
<div {...props} role="presentation" class={variants({ orientation, className })}></div>
2 changes: 1 addition & 1 deletion src/components/ui/tabs/components/tab.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const { class: className, for: htmlFor, ...props } = Astro.props;
)}
>
<div
role="none"
role="presentation"
x-show={`active === "${htmlFor}"`}
x-transition:enter="animate-in fade-in-0 zoom-in-90"
class="absolute inset-0 z-0 rounded bg-1 content-[''] motion-safe:transition-colors"
Expand Down

0 comments on commit 8423634

Please sign in to comment.