-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (31 loc) · 831 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (31 loc) · 831 Bytes
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
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.js',
'./layout/*.{liquid,json}',
'./sections/*.{liquid,json}',
'./snippets/*.{liquid,json}',
'./templates/**/*.{liquid,json}'
],
theme: {
extend: {
fontFamily: {
sans: ['Yantramanav', ...defaultTheme.fontFamily.sans],
serif: ['Kreon', ...defaultTheme.fontFamily.serif],
'yanone': ['Yanone Kaffeesatz', ...defaultTheme.fontFamily.sans],
},
keyframes: {
'top-down': {
'0%': { top: '-50%' },
'50%': { top: '140px' },
'100%': { top: '90px' }
}
},
animation: {
'top-down': 'top-down 200ms ease-out 500ms forwards',
}
},
},
plugins: [],
}