chore: add taiwind config for shadcn remix
This commit is contained in:
parent
99627e396d
commit
0b21e5a4e5
1 changed files with 22 additions and 0 deletions
22
apps/remix-template/tailwind.config.ts
Normal file
22
apps/remix-template/tailwind.config.ts
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
import type { Config } from "tailwindcss";
|
||||
|
||||
export default {
|
||||
content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: [
|
||||
"Inter",
|
||||
"ui-sans-serif",
|
||||
"system-ui",
|
||||
"sans-serif",
|
||||
"Apple Color Emoji",
|
||||
"Segoe UI Emoji",
|
||||
"Segoe UI Symbol",
|
||||
"Noto Color Emoji",
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
} satisfies Config;
|
||||
Loading…
Add table
Add a link
Reference in a new issue