/* The Workbench builds the package as an application would, with explicit sources so the plans in docs/ are not scanned for class names. Tailwind's theme and base layers are named first, then the foundation's `material` layers, then Tailwind's components and utilities: a caller's utility still outranks every package rule, and Tailwind's preflight sits below the package. Its preflight is the reset the foundation already carries rule for rule (foundation/reset.css), and above `material` its `* { padding: 0 }` would undo the padding and margins of every component rewritten without Tailwind. tailwind.css brings the components still written for Tailwind, without declaring the tokens a second time. */ @layer theme, base; @import '../../../resources/css/foundation.css'; @import '../../../resources/css/layout.css'; @import '../../../resources/css/components.css'; @import 'tailwindcss' source(none); @import '../../../resources/css/tailwind.css'; @import './material-scheme.css'; @source '../../../resources/views'; @source '../../../src';