decanter
Version:
Design System Tailwind CSS Preset.
19 lines (17 loc) • 495 B
JavaScript
/**
* Input base styles to compensate for HTML font size difference between TW and Decanter
*/
module.exports = function () {
return function ({ addComponents, theme }) {
const components = {
'.input': {
display: 'block',
borderColor: theme('colors.black.20'),
color: theme('colors.black.DEFAULT'),
fontSize: theme('decanter.base.inputFontSize'),
lineHeight: theme('lineHeight.snug'),
},
};
addComponents(components);
};
};