From bca26dd88d32de1463eb752190331274e1464ff1 Mon Sep 17 00:00:00 2001 From: Sheikh Limon Date: Thu, 5 Feb 2026 21:33:57 +0600 Subject: [PATCH] fix: correct Tailwind @source paths for tarball builds (#6978) Signed-off-by: sheikhlimon --- ui/desktop/src/styles/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/desktop/src/styles/main.css b/ui/desktop/src/styles/main.css index 3d9b1444..242162d3 100644 --- a/ui/desktop/src/styles/main.css +++ b/ui/desktop/src/styles/main.css @@ -2,8 +2,8 @@ @import 'tw-animate-css'; @plugin '@tailwindcss/typography'; -@source './index.html'; -@source './src/**/*.{js,ts,jsx,tsx}'; +@source '../../index.html'; +@source '../**/*.{js,ts,jsx,tsx}'; @theme { --breakpoint-md: 930px;