mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
b638ae186d
* 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
18 lines
312 B
JavaScript
18 lines
312 B
JavaScript
import styles from '../../styles';
|
|
|
|
const { color } = styles;
|
|
|
|
export default {
|
|
footerStyles: {
|
|
alignItems: 'center',
|
|
backgroundColor: color.darkGrey,
|
|
height: '55px',
|
|
textAlign: 'center',
|
|
position: 'absolute',
|
|
paddingTop: '15px',
|
|
left: '0',
|
|
right: '0',
|
|
bottom: '0',
|
|
},
|
|
};
|