diff --git a/components.json b/components.json index 21f8c2bf71..f490f4da6e 100644 --- a/components.json +++ b/components.json @@ -4,7 +4,7 @@ "rsc": false, "tsx": true, "tailwind": { - "config": "tailwind.config.js", + "config": "", "css": "src/styles/global.css", "baseColor": "neutral", "cssVariables": true, diff --git a/src/styles/global.css b/src/styles/global.css index a8e1276a05..0d550a159c 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -192,6 +192,8 @@ code { } @theme inline { + --text-2xs: 0.625rem; + --text-3xs: 0.5rem; --color-background: var(--background); --color-foreground: var(--foreground); --color-card: var(--card); diff --git a/tailwind.config.js b/tailwind.config.js deleted file mode 100644 index ba9e5d3081..0000000000 --- a/tailwind.config.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = { - content: ["./src/**/*.{js,jsx,ts,tsx}"], - theme: { - extend: { - fontSize: { - "2xs": "0.625rem", // 10px - "3xs": "0.5rem", // 8px - }, - }, - }, - plugins: [], -};