This commit is contained in:
mukesh13
2025-06-25 17:53:05 +05:30
parent 04d49b4d25
commit 1439b45bca
2 changed files with 14 additions and 1 deletions

View File

@ -1,4 +1,6 @@
@import "tailwindcss";
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;

11
tailwind.config.js Normal file
View File

@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}