We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e7d363 commit c397cb1Copy full SHA for c397cb1
tailwind.config.js
@@ -0,0 +1,25 @@
1
+const defaultTheme = require('tailwindcss/defaultTheme');
2
+
3
+module.exports = {
4
+ purge: [
5
+ './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
6
+ './storage/framework/views/*.php',
7
+ './resources/views/**/*.blade.php',
8
+ ],
9
10
+ theme: {
11
+ extend: {
12
+ fontFamily: {
13
+ sans: ['Nunito', ...defaultTheme.fontFamily.sans],
14
+ },
15
16
17
18
+ variants: {
19
20
+ opacity: ['disabled'],
21
22
23
24
+ plugins: [require('@tailwindcss/forms')],
25
+};
0 commit comments