forked from thedevdojo/auth-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
26 lines (26 loc) · 961 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{html,js,md}"],
theme: {
extend: {
animation: {
marquee: 'marquee 25s linear infinite',
'marquee-reverse': 'marquee 25s linear infinite reverse',
'marquee-horizontal': 'marqueeHorizontal 40s linear infinite',
},
keyframes: {
marquee: {
from: { transform: 'translateY(0)' },
to: { transform: 'translateY(calc(-50% - var(--gap)/2))' },
},
marqueeHorizontal: {
from: { transform: 'translateX(0)' },
to: { transform: 'translateX(calc(-100% - var(--gap)))' },
},
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}