fix(tailwindcss): tailwindcss works with vite, no custom theme

This commit is contained in:
JK-le-dev 2025-10-18 14:44:28 -05:00
commit 74ec515658
9 changed files with 36 additions and 118 deletions

View file

@ -1,10 +1,10 @@
import { useState } from "react";
import React from "react";
function App() {
return (
<>
<p className="text-xl text-primary">heyo</p>
</>
<div className="min-h-screen bg-blue-500 flex items-center justify-center">
<p className="text-3xl font-bold text-primary">Hello, world!</p>
</div>
);
}