File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { usePopper } from 'react-popper';
5
5
6
6
import { theme } from '../../essentials/theme' ;
7
7
import { get } from '../../utils/themeGet' ;
8
+ import { getSemanticValue } from '../../utils/cssVariables' ;
8
9
import { Colors , Spaces } from '../../essentials' ;
9
10
import { ChevronDownIcon , ChevronUpIcon } from '../../icons/index' ;
10
11
import { useClickOutside } from '../../utils/hooks/useClickOutside' ;
@@ -29,13 +30,13 @@ const DefaultPopoverWrapper = styled.div.attrs({ theme })`
29
30
display: flex;
30
31
align-items: center;
31
32
justify-content: center;
32
- border: 1px solid ${ get ( 'semanticColors.button.secondary.borderHover ') } ;
33
+ border: 1px solid ${ getSemanticValue ( 'border-primary-default ') } ;
33
34
padding: 0.8125rem ${ Spaces [ 2 ] } ;
34
35
border-radius: ${ get ( 'radii.2' ) } ;
35
36
36
37
&:hover {
37
38
cursor: pointer;
38
- background-color: ${ get ( 'semanticColors. background. secondary') } !important;
39
+ background-color: ${ getSemanticValue ( ' background- secondary-default ') } !important;
39
40
}
40
41
` ;
41
42
You can’t perform that action at this time.
0 commit comments