Uecko_ERP/apps/web/src/global.css

33 lines
901 B
CSS
Raw Normal View History

2025-07-07 18:25:13 +00:00
@import "@repo/shadcn-ui/globals.css";
@import "@repo/rdx-ui/globals.css";
2025-10-21 18:05:12 +00:00
@import "@erp/core/globals.css";
2025-07-07 18:25:13 +00:00
@import "@erp/customers/globals.css";
@import "@erp/customer-invoices/globals.css";
2025-05-09 10:45:32 +00:00
2025-05-19 16:15:01 +00:00
/**
* Tailwind CSS official document:
* https://tailwindcss.com/docs/detecting-classes-in-source-files
*
2025-07-07 18:25:13 +00:00
* if you ever need to explicitly add a source that's excluded by default,
2025-05-19 16:15:01 +00:00
* you can always add it with the @source directive.
*/
2025-07-07 18:25:13 +00:00
2026-04-01 17:13:49 +00:00
/*
@source '../node_modules/@repo/shadcn-ui';
2025-07-07 18:25:13 +00:00
@source '../node_modules/@repo/rdx-ui';
2025-07-08 17:23:29 +00:00
*/
2026-04-09 20:14:20 +00:00
@theme inline {
--sidebar-width: calc(var(--spacing) * 64);
--sidebar-width-icon: 3rem;
--header-height: calc(var(--spacing) * 14);
--content-padding: calc(var(--spacing) * 4);
--content-margin: calc(var(--spacing) * 1.5);
--content-full-height: calc(
100vh -
var(--header-height) -
(var(--content-padding) * 2) -
(var(--content-margin) * 2)
);
}