Skip to content

Commit

Permalink
fix(Radio): disabled style was incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
DSil committed Nov 7, 2024
1 parent 871825f commit b33121d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/orbit-components/src/Radio/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const Radio = React.forwardRef<HTMLInputElement, Props>((props, ref) => {
"duration-fast scale-100 transition-all ease-in-out",
"border-solid",
checked ? "border-2" : "border",
"active:scale-95",
!disabled && "active:scale-95",
)}
>
<span
Expand Down

0 comments on commit b33121d

Please sign in to comment.