mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
34 lines
717 B
JavaScript
34 lines
717 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
content: [
|
|
'./public/*.html',
|
|
'./app/helpers/**/*.rb',
|
|
'./app/javascript/**/*.js',
|
|
'./app/javascript/**/*.vue',
|
|
'./app/views/**/*.{erb,haml,html,slim}'
|
|
],
|
|
corePlugins: {
|
|
preflight: false
|
|
},
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
colors: {
|
|
transparent: 'transparent',
|
|
current: 'currentColor'
|
|
}
|
|
}
|
|
},
|
|
blocklist: [
|
|
'collapse',
|
|
'container'
|
|
],
|
|
plugins: [
|
|
require('@tailwindcss/aspect-ratio'),
|
|
require('@tailwindcss/typography'),
|
|
require('@tailwindcss/container-queries')
|
|
]
|
|
}
|