Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ui-cra/src/assets/img/applications.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions ui-cra/src/assets/img/clusters.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 12 additions & 12 deletions ui-cra/src/assets/img/flux-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions ui-cra/src/assets/img/policies.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion ui-cra/src/components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,13 @@ export const NavItem = styled(NavLink).attrs({
color: ${({ theme }) => theme.colors.neutral40};
font-weight: 600;
&.${props => props.activeClassName} {
border-right: 4px solid ${({ theme }) => theme.colors.primary};
border-right: 3px solid ${({ theme }) => theme.colors.primary};
background: rgba(0, 179, 236, 0.1);
color: ${({ theme }) => theme.colors.primary};

svg {
fill: ${({ theme }) => theme.colors.primary};
}
}
`;

Expand Down