-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (44 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
const plugin = require('tailwindcss/plugin')
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.ts",
"./resources/**/*.vue",
],
theme: {
extend: {
screens: {
'2xl': '1536px',
'3xl': '1920px',
'4xl': '2560px',
},
transitionProperty: {
'height': 'height',
'width': 'width',
'padding': 'padding',
},
textShadow: {
semibold: '0 0 0.5px var(--tw-shadow-color)',
bold: '0 0 1px var(--tw-shadow-color)',
sm: '0 1px 2px var(--tw-shadow-color)',
md: '0 2px 4px var(--tw-shadow-color)',
lg: '0 8px 16px var(--tw-shadow-color)',
},
}
},
plugins: [
require('@tailwindcss/container-queries'),
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
'text-shadow': (value) => ({
textShadow: value,
}),
},
{ values: theme('textShadow') }
)
}),
],
}