Skip to content

Commit

Permalink
allow click through (viamrobotics#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrloureed authored Apr 15, 2024
1 parent 850a544 commit 923dd56
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@viamrobotics/prime-core",
"version": "0.0.105",
"version": "0.0.106",
"publishConfig": {
"access": "public"
},
Expand Down
9 changes: 6 additions & 3 deletions packages/core/src/lib/select/select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,12 @@ $: errorClasses =
<slot />
</select>
<span
class={cx('absolute right-2 top-1.5 text-gray-6 transition', {
'peer-active:rotate-180': !disabled,
})}
class={cx(
'pointer-events-none absolute right-2 top-1.5 text-gray-6 transition',
{
'peer-active:rotate-180': !disabled,
}
)}
>
<Icon name="chevron-down" />
</span>
Expand Down

0 comments on commit 923dd56

Please sign in to comment.