@gravityforms/design-tokens
Version:
Design tokens as PostCSS variables, media queries, and mixins for Gravity Forms development.
27 lines (26 loc) • 464 B
JavaScript
module.exports = {
themeFrameworkVisuallyHide() {
return {
border: '0',
clip: 'rect(0, 0, 0, 0)',
height: '1px',
margin: '-1px',
overflow: 'hidden',
padding: '0',
position: 'absolute',
'white-space': 'nowrap',
width: '1px',
};
},
themeFrameworkVisuallyShow() {
return {
clip: 'auto',
height: 'auto',
margin: '0',
overflow: 'visible',
position: 'static',
'white-space': 'inherit',
width: 'auto',
};
},
};