generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (59 loc) · 1.95 KB
/
tailwind.config.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
const colors = require('tailwindcss/colors')
module.exports = {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./src/**/*.php",
"typhoon::*",
"./app/View/Components/**/*.php",
"./app/Filament/Resources/**/*.php",
"./vendor/happytodev/filament-comments/resources/**/*.blade.php",
"./vendor/happytodev/filament-social-networks/resources/**/*.blade.php",
"./vendor/happytodev/filament-tailwind-color-picker/src/Forms/Components/**/*.php",
"./vendor/happytodev/filament-tailwind-color-picker/resources/**/*.blade.php",
"./vendor/martin-ro/filament-charcount-field/resources/**/*.blade.php",
"./content/**/*.md",
"./content/**/*.json",
"./vendor/filament/**/*.blade.php",
],
theme: {
extend: {
colors: {
danger: colors.rose,
primary: colors.purple,
success: colors.green,
warning: colors.yellow,
},
height: {
'screen-1/10': '10vh',
'screen-1/6': '17vh',
'screen-1/5': '20vh',
'screen-1/4': '25vh',
'screen-1/3': '33vh',
'screen-1/2': '50vh'
},
minHeight: {
'screen-1/10': '10vh',
'screen-1/6': '17vh',
'screen-1/5': '20vh',
'screen-1/4': '25vh',
'screen-1/3': '33vh',
'screen-1/2': '50vh'
},
maxHeight: {
'screen-1/10': '10vh',
'screen-1/6': '17vh',
'screen-1/5': '20vh',
'screen-1/4': '25vh',
'screen-1/3': '33vh',
'screen-1/2': '50vh'
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
],
safelist: [
],
};