@shopgate/engage
Version:
Shopgate's ENGAGE library.
18 lines • 434 B
JavaScript
import { css } from 'glamor';
import { themeConfig } from '@shopgate/pwa-common/helpers/config';
const {
colors,
variables
} = themeConfig;
export const inputStyle = css({
border: 'none',
background: colors.placeholder,
display: 'block',
fontSize: '0.75rem',
lineHeight: 1,
textAlign: 'center',
padding: `${variables.gap.small * 0.75}px ${variables.gap.small}px`,
outline: 0,
width: '100%',
borderRadius: 4
});