Created
March 29, 2019 13:01
-
-
Save CarlosLevir/d9097000717d01a93c44624c4d14001c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const styles = { | |
container: { | |
display: 'flex', | |
textAlign: 'center', | |
flexDirection: 'column', | |
minWidth: '300px', | |
boxShadow: 'rgba(0, 0, 0, 0.1) 0px 0px 20px', | |
background: 'rgb(255, 255, 255)', | |
borderRadius: '4px', | |
padding: '30px 20px' | |
}, | |
submitButton: { | |
height: '40px', | |
textAlign: 'center', | |
alignItems: 'center', | |
borderRadius: '4px', | |
fontWeight: 'bold', | |
fontSize: '14px', | |
border: 0, | |
color: '#fff', | |
background: '#009587', | |
marginTop: '5px', | |
}, | |
username: { | |
height: '40px', | |
padding: '0 15px', | |
border: '1px solid #eee', | |
borderRadius: '4px', | |
marginBottom: '10px', | |
color: '#444' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment