blob: 85f380bedf47735a88d55b59b7452d7400f62280 [file] [log] [blame]
Sean McCulloughbf66a2f2025-06-23 21:53:55 -07001import { LitElement } from "lit";
2
3export 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}