File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ const MenuTab: FC<MenuTabProps> = ({
20
20
isOpen,
21
21
setColorKey,
22
22
} ) => (
23
- < S . MenuItem $variant = "secondary " onClick = { toggleClusterMenu } >
23
+ < S . MenuItem $variant = "primary " onClick = { toggleClusterMenu } >
24
24
< S . ContentWrapper >
25
25
< S . StatusIconWrapper >
26
26
< S . StatusIcon status = { status } aria-label = "status" >
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export const MenuItem = styled('li').attrs({ role: 'menuitem' })<{
48
48
49
49
export const ContentWrapper = styled . div `
50
50
display: flex;
51
- align-items: baseline ;
51
+ align-items: center ;
52
52
column-gap: 4px;
53
53
` ;
54
54
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export const ClusterList = styled.ul.attrs<{ $colorKey: ClusterColorKey }>({
16
16
} ) `
17
17
border-radius: 8px;
18
18
padding: 4px 4px 4px 4px;
19
- margin-bottom: 8px;
19
+ margin-bottom: - 8px;
20
20
background-color: ${ ( { theme, $colorKey } ) =>
21
21
theme . clusterMenu . backgroundColor [ $colorKey ] } ;
22
22
` ;
Original file line number Diff line number Diff line change @@ -565,14 +565,14 @@ export const theme = {
565
565
menu : {
566
566
primary : {
567
567
backgroundColor : {
568
- normal : Colors . brand [ 0 ] ,
568
+ normal : 'transparent' ,
569
569
hover : hexToRgba ( Colors . brand [ 95 ] , 0.03 ) ,
570
570
active : hexToRgba ( Colors . brand [ 95 ] , 0.05 ) ,
571
571
} ,
572
572
color : {
573
- normal : Colors . brand [ 80 ] ,
574
- hover : Colors . brand [ 90 ] ,
575
- active : Colors . brand [ 70 ] ,
573
+ normal : Colors . neutral [ 80 ] ,
574
+ hover : Colors . neutral [ 90 ] ,
575
+ active : Colors . neutral [ 95 ] ,
576
576
} ,
577
577
statusIconColor : {
578
578
online : Colors . green [ 40 ] ,
You can’t perform that action at this time.
0 commit comments