Skip to content

Commit

Permalink
fix(Slider): add not-allowed cursor class for disabled state
Browse files Browse the repository at this point in the history
  • Loading branch information
Cata1989 committed Feb 26, 2024
1 parent 02926ca commit dfbf369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/beeq/src/components/slider/bq-slider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export class BqSlider {
<div
class={{
[`bq-slider ${this.type}`]: true,
'opacity-60': this.disabled,
'cursor-not-allowed opacity-60': this.disabled,
}}
part="base"
aria-disabled={this.disabled ? 'true' : 'false'}
Expand Down

0 comments on commit dfbf369

Please sign in to comment.