Skip to content

Commit

Permalink
fix: fixed bug on slider (carbon-design-system#17771)
Browse files Browse the repository at this point in the history
Co-authored-by: Taylor Jones <[email protected]>
  • Loading branch information
guidari and tay1orjones authored Oct 16, 2024
1 parent f16158e commit d5ae548
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/styles/scss/components/slider/_slider.scss
Original file line number Diff line number Diff line change
Expand Up @@ -372,19 +372,20 @@

&:hover {
cursor: not-allowed;
transform: translate(-50%, -50%);
transform: none;
}

&:focus {
background-color: $border-disabled;
box-shadow: none;
outline: none;
transform: translate(-50%, -50%);
transform: none;
}

&:active {
background: $border-disabled;
transform: translate(-50%, -50%);
box-shadow: none;
transform: none;
}
}

Expand Down

0 comments on commit d5ae548

Please sign in to comment.