Skip to content

Commit

Permalink
fix: fixed bug on slider
Browse files Browse the repository at this point in the history
  • Loading branch information
guidari committed Oct 16, 2024
1 parent 98b7c28 commit 1ca48f0
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 1ca48f0

Please sign in to comment.