Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 55x 55x 55x 55x 55x 55x | export const CSS_INHERIT_VALUE = 'inherit'; export const POSITION_DEFAULT_VALUE = 'relative'; export const CSS_DEFAULT_FONT_FAMILY_VALUE = 'base'; import { getGlobalStyles } from 'src/global-styles'; const { grid: gridSchema } = getGlobalStyles(); export const defaultStylesBase = { bg: 'transparent', color: CSS_INHERIT_VALUE, ellipsis: false, fontFamily: CSS_DEFAULT_FONT_FAMILY_VALUE, fontSize: CSS_INHERIT_VALUE, fontWeight: CSS_INHERIT_VALUE, italic: false, kerning: CSS_INHERIT_VALUE, lg: false, lineHeight: 1.5, sm: false, textAlign: CSS_INHERIT_VALUE, textDecoration: CSS_INHERIT_VALUE, }; export const defaultControlStyles = { activeColor: 'brandPrimary', bg: 'white.light', borderColor: 'borderColor', fontFamily: CSS_DEFAULT_FONT_FAMILY_VALUE, isFocused: false, isRequired: false, padding: gridSchema.gutter, placeholderColor: 'gray.light', plainText: false, }; |