Skip to content

Commit

Permalink
+authStyles.js, for Auth container styling; #13
Browse files Browse the repository at this point in the history
  • Loading branch information
veeepi committed Apr 12, 2021
1 parent 4cc44b5 commit 74f0ddf
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions src/styles/authStyles.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
import { makeStyles } from '@material-ui/core/styles';
import { holisticTheme } from './colorThemes';

const authStyles = makeStyles(() => ({
authContainer: {
minWidth: 320,
maxWidth: 450,
width: '80%',
margin: 'auto',
borderRadius: '15px',

},
authAppBar: {
borderRadius: '15px 15px 0 0',
backgroundColor: holisticTheme.bgContainer,
},
authTabs: {
// borderRadius: '15px 15px 0 0',
// backgroundColor: holisticTheme.bgContainer,
},
authForm: {
borderRadius: '0 0 15px 15px',
// flexGrow: 1,
backgroundColor: holisticTheme.bgContainer,
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
},
authField: {
width: '85%',
marginTop: '10px',

},
authFormLabel: {
color: holisticTheme.textLabel,
// paddingBottom: '5px',
marginLeft: '10px',
marginBottom: '10px',
fontSize: '18px',
fontStyle: 'italic',
},
authFormInput: {
// justifyContent: 'center',
// alignItems: 'center',
// marginTop: '5px',
padding: '5px',
borderRadius: '15px',
color: holisticTheme.textLabel,
backgroundColor: holisticTheme.bgInput,
},
authFormSubmit: {
margin: '15px',
paddingRight: '35px',
paddingLeft: '35px',
borderRadius: '25px',
color: holisticTheme.textBtnPrimary,
backgroundColor: holisticTheme.bgBtnPrimary,
},
close: {
fontSize: 40,
justifyContent: 'flex-end',
backgroundColor: 'white',
borderRadius: 0.5,
},
}));

export default authStyles;

0 comments on commit 74f0ddf

Please sign in to comment.