fixed missing css classes from libary

This commit is contained in:
PxlLoewe
2025-06-27 18:05:19 -07:00
parent 96decd7399
commit e3988c24e3
3 changed files with 18 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
@plugin "daisyui" { @plugin "daisyui" {
themes: dark, nord; themes: dark, nord;
} }
@source "../../../packages/shared-components/";
@font-face { @font-face {
font-family: "Melder"; font-family: "Melder";

View File

@@ -2,6 +2,7 @@
@plugin "daisyui" { @plugin "daisyui" {
themes: dark, nord; themes: dark, nord;
} }
@source "../../../packages/shared-components/";
/* /*
The default border color has changed to `currentColor` in Tailwind CSS v4, The default border color has changed to `currentColor` in Tailwind CSS v4,

View File

@@ -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;