mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
40af0d29ef
* GradientButton components * Style guide updates * Display errors and override styles for InputFieldWithIcon * Envelope Icon * Login page form submission (#157) * API client utility * moves test helpers to the test directory * Utility to namespace local storage keys * LoginSuccessfulPage component * Check icon * adds auth to redux state * successful form submission * Allow tests to load dummy SVG static images & test fixes * ForgotPassword Page, Form & route * Email validator
19 lines
355 B
JavaScript
19 lines
355 B
JavaScript
import styles from '../../../styles';
|
|
|
|
const { border, padding } = styles;
|
|
|
|
export default {
|
|
formStyles: {
|
|
width: '100%',
|
|
},
|
|
inputStyles: {
|
|
width: '100%',
|
|
},
|
|
submitButtonStyles: {
|
|
borderTopLeftRadius: border.radius.base,
|
|
borderTopRightRadius: border.radius.base,
|
|
marginTop: padding.base,
|
|
padding: padding.medium,
|
|
},
|
|
};
|