tailwindcss-mosiui-mini
Version:
A minimal tailwind preset for mosiui
23 lines (22 loc) • 440 B
JavaScript
/** @type {import("tailwindcss/types/config").CSSRuleObject} */
module.exports = (theme) => ({
h1: {
fontSize: theme("fontSize.3xl"),
},
h2: {
fontSize: theme("fontSize.xl"),
},
h3: {
fontSize: theme("fontSize.lg"),
},
h4: {
fontSize: theme("fontSize.base"),
fontWeight: theme("fontWeight.medium"),
},
h5: {
fontSize: theme("fontSize.sm"),
},
h6: {
fontSize: theme("fontSize.xs"),
},
});