Skip to content

Commit

Permalink
👕 Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
timmo001 committed Oct 6, 2019
1 parent 39b420b commit b1bcadf
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/Components/Onboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ import socketio from '@feathersjs/socketio-client';
import { createMuiTheme, responsiveFontSizes } from '@material-ui/core/styles';
import { ThemeProvider } from '@material-ui/styles';

import { ThemeProps, defaultPalette, defaultTheme } from './Configuration/Config';
import {
ThemeProps,
defaultPalette,
defaultTheme
} from './Configuration/Config';
import clone from './Utils/clone';
import Loading from './Utils/Loading';
import Login from './Login';
Expand Down Expand Up @@ -142,7 +146,8 @@ function Onboarding(props: OnboardingProps) {
return <Loading text="Attempting Login. Please Wait.." />;

const cssOverrides = `
a {color: ${(config && config.theme && config.theme.link_color) || defaultTheme.link_color};}
a {color: ${(config && config.theme && config.theme.link_color) ||
defaultTheme.link_color};}
`;

return (
Expand Down

0 comments on commit b1bcadf

Please sign in to comment.