mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* Extracts stacked boxes UI to a re-usable component * Presence validator * Equality validator * Adds ResetPasswordFrom * PasswordResetPage component and route * Ex icon on forgot pw page goes to login * Smooth out the fonts so they match the mocks * Remove dynamic background and refactor colors
17 lines
312 B
JavaScript
17 lines
312 B
JavaScript
import styles from '../../styles';
|
|
|
|
const { color } = styles;
|
|
|
|
export default {
|
|
footerStyles: {
|
|
alignItems: 'center',
|
|
backgroundColor: color.footerBg,
|
|
height: '55px',
|
|
textAlign: 'center',
|
|
position: 'absolute',
|
|
paddingTop: '15px',
|
|
left: '0',
|
|
right: '0',
|
|
bottom: '0',
|
|
},
|
|
};
|