Skip to content

Commit

Permalink
fix(web/ui): use proper sources for tailwindcss
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Shatford <[email protected]>
  • Loading branch information
jordanshatford committed Mar 5, 2025
1 parent 756c1cc commit fca1828
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion apps/web/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
}

@variant dark (&:where(.dark, .dark *));
@custom-variant dark (&:where(.dark, .dark *));

@theme {
--color-brand-50: var(--color-blue-50);
Expand All @@ -33,3 +33,7 @@
@utility max-w-xxxs {
max-width: 10rem;
}

@source "../**/*.{svelte,js,ts,jsx,tsx}"
@source "../../../apps/*/src/**/*.{svelte,js,ts,jsx,tsx}";
@source "../../../packages/*/src/**/*.{svelte,js,ts,jsx,tsx}";
6 changes: 5 additions & 1 deletion packages/ui/src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
}

@variant dark (&:where(.dark, .dark *));
@custom-variant dark (&:where(.dark, .dark *));

@theme {
--color-brand-50: var(--color-blue-50);
Expand All @@ -33,3 +33,7 @@
@utility max-w-xxxs {
max-width: 10rem;
}

@source "../**/*.{svelte,js,ts,jsx,tsx}"
@source "../../../apps/*/src/**/*.{svelte,js,ts,jsx,tsx}";
@source "../../../packages/*/src/**/*.{svelte,js,ts,jsx,tsx}";

0 comments on commit fca1828

Please sign in to comment.