Merge branch '6-application-layout' into 'master'
Resolve "Application layout" Closes #6 See merge request genesys-pgr/genesys-ui!4
src/ui/layout/PageLayout.tsx
0 → 100644
... | ... | @@ -10,6 +10,7 @@ import {loginRequest, checkTokenRequest} from 'actions/login'; |
import ContentHeader from 'ui/common/heading/ContentHeader'; | ||
import PageLayout from 'ui/layout/PageLayout'; | ||
import LoginForm from './c/LoginForm'; | ||
import Grid from '@material-ui/core/Grid'; | ||
import Card, { CardHeader, CardContent } from 'ui/common/Card'; | ||
... | ... | @@ -45,19 +46,19 @@ class LoginContainer extends React.Component<ILoginContainerProps, void> { |
public render() { | ||
return ( | ||
<div> | ||
<ContentHeader title="Welcome to Genesys" subTitle="Log in to manage datasets" /> | ||
<Grid container spacing={ 0 } justify="center" className="back-gray p-20"> | ||
<Grid item xs={ 12 } md={ 5 } lg={ 4 } xl={ 3 }> | ||
< |