mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 12:11:52 +02: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'],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
);
|