20 lines
827 B
CSS
20 lines
827 B
CSS
/*
|
|
* Tailwind v4 — utilities + theme only. NO preflight: Kendo UI owns base element
|
|
* styling and styles.scss already ships its own reset. Loading Tailwind's base reset
|
|
* would fight Kendo.
|
|
*
|
|
* theme -> kept in its own layer (design tokens / CSS vars only, no output by itself)
|
|
* utilities -> imported UNLAYERED so layout utilities (grid/col-span/gap/flex) reliably
|
|
* win over Kendo's unlayered CDN theme when they ever land on the same node.
|
|
*
|
|
* Used by the shared form-layout convention: a neutral wrapper <div> carries
|
|
* grid grid-cols-1 md:grid-cols-2 gap-x-4 gap-y-3
|
|
* and full-width fields use md:col-span-2.
|
|
*/
|
|
@layer theme;
|
|
@import "tailwindcss/theme.css" layer(theme);
|
|
@import "tailwindcss/utilities.css";
|
|
|
|
/* Explicit source scanning (auto-detection also covers these). */
|
|
@source "./";
|