We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 398548d commit 9c94e23Copy full SHA for 9c94e23
browser-extension/src/entrypoints/popup/style.css
@@ -1,5 +1,2 @@
1
@import url("../../styles/popup-frame.css");
2
-
3
-@tailwind base;
4
-@tailwind components;
5
-@tailwind utilities;
+@import "tailwindcss";
browser-extension/tests/playground/playground.tsx
@@ -1,7 +1,6 @@
import { createRoot } from 'react-dom/client'
import '@/entrypoints/popup/style.css'
import './style.css'
-import './tailwind-fix.css'
import { PopupPlayground } from './PopupPlayground'
6
7
const root = createRoot(document.getElementById('root')!)
browser-extension/tests/playground/tailwind-fix.css
browser-extension/vite.playground.config.ts
@@ -6,7 +6,7 @@ import path from 'path'
export default defineConfig({
plugins: [
8
react(),
9
- tailwindcss() as any
+ tailwindcss()
10
],
11
resolve: {
12
alias: {
0 commit comments