blowfish/node_modules/tw-elements/dist/plugin.js

20 lines
419 B
JavaScript
Raw Permalink Normal View History

2023-01-29 22:30:24 +00:00
const plugin = require('tailwindcss/plugin');
const bsComponents = require('./bs-styles');
module.exports = plugin(
({ addComponents }) => {
addComponents(bsComponents);
},
{
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
body: ['Inter', 'sans-serif'],
mono: ['ui-monospace', 'monospace'],
},
},
},
}
);