From a6e58776d22a11103e7c03cbd999d4c677f51cf6 Mon Sep 17 00:00:00 2001 From: MyPrototypeWhat Date: Tue, 30 Sep 2025 15:12:33 +0800 Subject: [PATCH] feat(tailwind): add source for UI package to Tailwind CSS configuration - Included a new source path for the UI package in the Tailwind CSS configuration to enhance styling capabilities. - This addition allows for better integration of UI components with Tailwind's utility classes, improving overall design consistency. --- src/renderer/src/assets/styles/tailwind.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderer/src/assets/styles/tailwind.css b/src/renderer/src/assets/styles/tailwind.css index f05b01b65c..81b9ff93f7 100644 --- a/src/renderer/src/assets/styles/tailwind.css +++ b/src/renderer/src/assets/styles/tailwind.css @@ -4,6 +4,7 @@ /* heroui */ @plugin '../../hero.ts'; @source '../../../../../node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}'; +@source '../../../../../packages/ui/src/**/*.{js,ts,jsx,tsx}'; @custom-variant dark (&:is(.dark *));