fixed missing css classes from libary
This commit is contained in:
@@ -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";
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
16
apps/hub/tailwind.config.ts
Normal file
16
apps/hub/tailwind.config.ts
Normal 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;
|
||||||
Reference in New Issue
Block a user