-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
67 lines (65 loc) · 1.6 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"./app/**/*.php",
"./app/View/Components/**/*.php",
],
theme: {
extend: {
fontFamily: {
'title': ['"Great Vibes"', 'Carlito', ...defaultTheme.fontFamily.sans],
'heading': ['"Moulpali"', 'Carlito', ...defaultTheme.fontFamily.sans],
'sans': ['"Carlito"', ...defaultTheme.fontFamily.sans],
},
gridTemplateAreas: {
'newsletter__dekstop': [
'icon title form',
'icon message form',
],
'newsletter': [
'icon title',
'message message',
'form form',
],
},
gridTemplateColumns: {
'newsletter__dekstop': 'auto 1fr 1fr',
'newsletter': 'auto 1fr',
},
typography: {
DEFAULT: {
css: {
h1: {
fontFamily: 'heading',
},
h2: {
fontFamily: 'heading',
},
h3: {
fontFamily: 'heading',
},
h4: {
fontFamily: 'heading',
},
h5: {
fontFamily: 'heading',
},
h6: {
fontFamily: 'heading',
},
maxWidth: '100%',
},
}
}
},
},
plugins: [
require("@tailwindcss/aspect-ratio"),
require('@savvywombat/tailwindcss-grid-areas'),
require('@tailwindcss/typography'),
],
}