Skip to content

Commit c998bf5

Browse files
committed
chore: Fix Tailwind v3 installation
1 parent 3c5caf2 commit c998bf5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

assets/css/main.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

src/renderer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createRoot } from 'react-dom/client';
22

33
import 'nprogress/nprogress.css';
4-
import 'tailwindcss/tailwind.css';
4+
import '../../assets/css/main.css';
55
import { App } from './App';
66

77
const container = document.getElementById('root');

0 commit comments

Comments
 (0)