39 lines
843 B
JavaScript
39 lines
843 B
JavaScript
import yellow from '@material-ui/core/colors/yellow';
|
|
export const styles = theme => ({
|
|
container : {
|
|
flex :1,
|
|
flexGrow : 1,
|
|
height : '100%',
|
|
backgroundColor:'#024f8e',
|
|
marginTop: '-56px',
|
|
paddingBottom:50
|
|
},
|
|
gridContainer : {
|
|
flex :1,
|
|
justifyContent: 'center',
|
|
flexDirection: 'column'
|
|
},
|
|
registerContainer: {
|
|
marginTop : 50
|
|
},
|
|
formRegister : {
|
|
padding : 20,
|
|
display : 'flex',
|
|
flexDirection: 'column',
|
|
textAlign : 'center'
|
|
},
|
|
registerPaper : {
|
|
flex :1,
|
|
flexDirection : 'row',
|
|
justifyContent:'center'
|
|
},
|
|
logo : {
|
|
width : '200px'
|
|
},
|
|
logoContainer : {
|
|
textAlign : 'center',
|
|
background : yellow['500'],
|
|
padding : 20
|
|
},
|
|
});
|