mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
20 lines
419 B
JavaScript
20 lines
419 B
JavaScript
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'],
|
|
},
|
|
},
|
|
},
|
|
}
|
|
);
|