Files
lms/frontend/tailwind.config.js

22 lines
439 B
JavaScript

module.exports = {
presets: [require('frappe-ui/src/utils/tailwind.config')],
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
'./node_modules/frappe-ui/src/components/**/*.{vue,js,ts,jsx,tsx}',
'../node_modules/frappe-ui/src/components/**/*.{vue,js,ts,jsx,tsx}',
],
theme: {
extend: {
strokeWidth: {
1.5: '1.5',
},
screens: {
'2xl': '1536px',
'3xl': '1920px',
},
},
},
plugins: [],
}