-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (67 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
const plugin = require('tailwindcss/plugin');
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./templates/**/*.twig',
'./public/js/src/**/*.{vue,js}',
'./config/project/ckeditor/**/*.yaml',
],
safelist: [
// vue transition classes: https://vuejs.org/v2/guide/transitions.html#Transition-Classes
'md-enter-active',
'md-leave-active',
'md-enter',
'md-leave-active',
// {
// pattern: /^(m|p)(t|b|r|l|x|y)?-(0|1|2|3|4|6|8|10|12|16|24)$/,
// variants: ['md', 'lg'],
// },
],
theme: {
screens: {
'xs': '400px',
...defaultTheme.screens,
'print': { 'raw': 'print' },
'retina': { 'raw': '(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)' },
},
extend: {
colors: {
'black-transparent' : 'rgba(0,0,0,0.4)',
'white-transparent' : 'rgba(255,255,255,0.6)',
'white-transparent-dark' : 'rgba(255,255,255,0.8)',
},
borderWidth: {
'10': '10px',
},
maxWidth: {
'1/2': '50%',
'3/5': '60%',
'11/12': '91%',
},
height: {
'120': '30rem',
},
fontFamily: {
'headings': [
'"Helvetica Neue"',
'Arial',
// see https://tailwindcss.com/docs/font-family for list
...defaultTheme.fontFamily.sans,
],
},
},
},
plugins: [
require('@tailwindcss/typography'),
plugin(({ addBase, theme }) => {
addBase({
// same as: transition-all duration-300 ease-in-out
'.transition-default': {
transitionProperty: theme('transitionProperty.all'),
transitionDuration: theme('transitionDuration.300'),
transitionTimingFunction: theme('transitionTimingFunction.in-out'),
},
});
}),
],
};