Fix background color transition in destructive buttons

th-downstream
Thibaut Girka 6 years ago committed by ThibG
parent 4211c9b8d3
commit b29731bb10

@ -35,6 +35,17 @@
transition: all 200ms ease-out;
}
&--destructive {
transition: none;
&:active,
&:focus,
&:hover {
background-color: $error-red;
transition: none;
}
}
&:disabled {
background-color: $ui-primary-color;
cursor: default;

Loading…
Cancel
Save