| Sean McCullough | bf66a2f | 2025-06-23 21:53:55 -0700 | [diff] [blame] | 1 | import { LitElement } from "lit"; |
| 2 | |||||
| 3 | export class SketchTailwindElement extends LitElement { | ||||
| 4 | // Disable shadow DOM for better integration with tailwind. | ||||
| 5 | // Inspired by: | ||||
| 6 | // https://lengrand.fr/a-simple-setup-to-use-litelement-with-tailwindcss-for-small-projects/ | ||||
| 7 | |||||
| 8 | createRenderRoot() { | ||||
| 9 | return this; | ||||
| 10 | } | ||||
| 11 | } | ||||