/* * Livewire Material's Tailwind half: the theme that turns the tokens into utilities and the token * utilities themselves (`state-layer`, `focus-ring`, `touch-target`, `link`, `type-*`), for a view * that still writes Tailwind classes — the showcase until step 38, and an application's own views * until it drops Tailwind. Every component stylesheet is plain CSS (plan step 36) and needs * nothing from here. This file goes when the last Tailwind class leaves (step 39). * * It carries no tokens, so it builds beside the package's CSS without declaring them twice, in an * entry of its own — `@tailwindcss/vite` inlines the imports of an entry that uses Tailwind without * deduplicating them, so the package's stylesheets stay in another (the Workbench's package.css). * The Workbench's Tailwind entry, like an application's: * * @layer properties, theme, base, material, components, utilities; * @import 'tailwindcss' source(none); * @import '../../../resources/css/tailwind.css'; * * with the same layer statement at the top of the package's entry. It replaces nothing of the 1.x * `material.css` shortcut, which is gone: the components come from `all.css` or their own files. */ @import './tokens/theme.css'; @import './tokens/utilities.css';