Skip to content

Commit

Permalink
fix(ProfilesList): fixes Tabs display
Browse files Browse the repository at this point in the history
  • Loading branch information
newick authored and lutangar committed Oct 13, 2020
1 parent a31a2ab commit 7d9b4fe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/profiles/App/Pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Redirect, Route, Switch } from 'react-router';
import React from 'react';
import Tabs from '../../../../components/molecules/Tabs';
import Tab from '../../../../components/atoms/Tab/Tab';
import Tabs from 'components/molecules/Tabs/Tabs';
import Tab from 'components/atoms/Tab/Tab';
import Profiles from './Profiles';
import Error from './Error';
import Subscriptions from './Subscriptions';
Expand Down
3 changes: 2 additions & 1 deletion src/components/atoms/Tab/Tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export default styled(NavLink).attrs({
line-height: 1.2;
font-family: 'Lato', sans-serif;
font-weight: 700;
text-align: center;
text-transform: none;
text-decoration: none;
color: ${props => props.theme.textColor};
Expand All @@ -23,7 +24,7 @@ export default styled(NavLink).attrs({
}
&.${props => props.activeClassName} {
color: '#000';
color: #000;
border-bottom-color: ${props => props.theme.textColor};
}
`;
File renamed without changes.
File renamed without changes.

0 comments on commit 7d9b4fe

Please sign in to comment.