diff --git a/apps/dispatch/app/globals.css b/apps/dispatch/app/globals.css index ea6e4152..67db6f59 100644 --- a/apps/dispatch/app/globals.css +++ b/apps/dispatch/app/globals.css @@ -2,6 +2,7 @@ @plugin "daisyui" { themes: dark, nord; } +@source "../../../packages/shared-components/"; @font-face { font-family: "Melder"; diff --git a/apps/hub/app/globals.css b/apps/hub/app/globals.css index 81da2e99..4a311cc6 100644 --- a/apps/hub/app/globals.css +++ b/apps/hub/app/globals.css @@ -2,6 +2,7 @@ @plugin "daisyui" { themes: dark, nord; } +@source "../../../packages/shared-components/"; /* The default border color has changed to `currentColor` in Tailwind CSS v4, diff --git a/apps/hub/tailwind.config.ts b/apps/hub/tailwind.config.ts new file mode 100644 index 00000000..adf4e689 --- /dev/null +++ b/apps/hub/tailwind.config.ts @@ -0,0 +1,16 @@ +import type { Config } from "tailwindcss"; + +export default { + theme: { + extend: { + colors: { + background: "var(--background)", + foreground: "var(--foreground)", + rescuetrack: "#46b7a3", + }, + transitionProperty: { + width: "width", + }, + }, + }, +} satisfies Config;