mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* 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
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
import { pxToRem } from './helpers';
|
|
|
|
export default {
|
|
auto: 'auto',
|
|
medium: pxToRem(16),
|
|
base: pxToRem(18),
|
|
half: pxToRem(9),
|
|
none: 0,
|
|
most: pxToRem(40),
|
|
};
|