Skip to content

Commit a67b349

Browse files
committed
Fix app nav tem item color
1 parent a06f092 commit a67b349

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/molecules/AppNavigatorBoostHubTeamItem.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ const MainButton = styled.button`
3030
${flexCenter}
3131
font-size: 18px;
3232
border: none;
33-
background-color: ${({ theme }) => theme.secondaryButtonBackgroundColor};
34-
color: ${({ theme }) => theme.secondaryButtonLabelColor};
35-
border: 1px solid ${({ theme }) => theme.borderColor};
33+
background-color: ${({ theme }) => theme.teamSwitcherBackgroundColor};
34+
border: 1px solid ${({ theme }) => theme.teamSwitcherBorderColor};
35+
color: ${({ theme }) => theme.teamSwitcherTextColor};
3636
font-size: 13px;
3737
3838
&:hover,
3939
&:active,
4040
&.active {
4141
cursor: pointer;
42-
color: ${({ theme }) => theme.secondaryButtonHoverLabelColor};
43-
background-color: ${({ theme }) => theme.primaryColor};
42+
background-color: ${({ theme }) => theme.teamSwitcherHoverBackgroundColor};
43+
color: ${({ theme }) => theme.teamSwitcherHoverTextColor};
4444
}
4545
4646
&:disabled {

0 commit comments

Comments
 (0)