forked from nemerald-voip/fspbx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (30 loc) · 947 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (30 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"./Modules/**/Resources/assets/js/**/*.vue", // Include module Vue files
'./resources/js/vueform.config.js', // or where `vueform.config.js` is located. Change `.js` to `.ts` if required.
'./node_modules/@vueform/vueform/themes/tailwind/**/*.vue',
'./node_modules/@vueform/vueform/themes/tailwind/**/*.js',
],
// prefix: 'tw-',
// corePlugins: {
// preflight: false,
// },
theme: {
fontFamily: {
nunito: ["Nunito", "sans-serif"],
},
extend: {
display: ['group-hover'],
maxWidth: {'95':'95%'},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@vueform/vueform/tailwind'),
],
vfDarkMode: false,
}