임시 커밋 ㅌㅌㅌ
This commit is contained in:
parent
852facb02f
commit
e466796106
48 changed files with 699 additions and 5917 deletions
|
|
@ -1,18 +1,38 @@
|
|||
import type { Config } from "tailwindcss";
|
||||
|
||||
export default {
|
||||
content: [
|
||||
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
],
|
||||
content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
background: "var(--background)",
|
||||
foreground: "var(--foreground)",
|
||||
fontFamily: {
|
||||
sans: [
|
||||
'"Inter"',
|
||||
"ui-sans-serif",
|
||||
"system-ui",
|
||||
"sans-serif",
|
||||
'"Apple Color Emoji"',
|
||||
'"Segoe UI Emoji"',
|
||||
'"Segoe UI Symbol"',
|
||||
'"Noto Color Emoji"',
|
||||
],
|
||||
},
|
||||
animation: {
|
||||
flip: "flip 6s infinite steps(2, end)",
|
||||
rotate: "rotate 3s linear infinite both",
|
||||
},
|
||||
keyframes: {
|
||||
flip: {
|
||||
to: {
|
||||
transform: "rotate(360deg)",
|
||||
},
|
||||
},
|
||||
rotate: {
|
||||
to: {
|
||||
transform: "rotate(90deg)",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
} satisfies Config;
|
||||
} satisfies Config;
|
||||
Loading…
Add table
Add a link
Reference in a new issue