fix(dropdown): correct dropdown menus colors

This commit is contained in:
Matteo Pagliazzi 2020-02-01 14:54:34 +01:00
parent dec7bd2ec6
commit 4e6b411763

View file

@ -35,7 +35,6 @@
line-height: 1.71;
color: $gray-50;
cursor: pointer;
background-color: $purple-200;
&:focus {
outline: none;
@ -44,7 +43,7 @@
&:active, &:hover, &.active {
background-color: #6133B4;
background-color: rgba(#d5c8ff, 0.32);
color: $purple-200;
}
@ -52,7 +51,7 @@
cursor: default;
&:active, &:hover, &.active {
background-color: $purple-200;
background-color: inherit;
color: inherit;
}
}