mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +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
18 lines
355 B
JavaScript
18 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,
|
|
},
|
|
};
|