mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 01:41:54 +02:00
19 lines
419 B
JavaScript
19 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'],
|
|
},
|
|
},
|
|
},
|
|
}
|
|
);
|