-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
32 lines (32 loc) · 1004 Bytes
/
tailwind.config.cjs
File metadata and controls
32 lines (32 loc) · 1004 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
/* eslint-disable @typescript-eslint/no-var-requires */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/app/**/*.{js,ts,jsx,tsx}", "./src/pages/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
screens: {
xs: "520px",
},
fontFamily: {
sans: ["var(--font-inter)"], // override default font
},
backgroundSize: {
"100%": "100%",
},
keyframes: {
"fade-out": {
"0%": {
opacity: 100,
},
"100%": {
opacity: 0,
},
},
},
animation: {
"fade-out-delayed": "150ms ease-out 4s forwards fade-out",
},
},
},
plugins: [require("tailwind-scrollbar")({ nocompatible: true })],
};