This commit is contained in:
a 2025-05-12 20:16:13 -05:00
parent 50eda14192
commit 908b4da72d
No known key found for this signature in database
GPG Key ID: 2F22877AA4DFDADB
6 changed files with 355 additions and 664 deletions

View File

@ -37,9 +37,9 @@
"uuid": "^10.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"@tailwindcss/postcss": "^4.1.6",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7",
"tailwindcss": "^4.1.6",
"typescript": "^5.5.4",
"vite": "^5.3.5"
},

View File

@ -1,6 +1,5 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
'@tailwindcss/postcss': {},
},
}

View File

@ -1,3 +1,19 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import 'tailwindcss';
/*
The default border color has changed to `currentcolor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
looks the same as it did with Tailwind CSS v3.
If we ever want to remove these styles, we need to add an explicit border
color utility to any element that depends on these defaults.
*/
@layer base {
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--color-gray-200, currentcolor);
}
}

File diff suppressed because one or more lines are too long

View File

@ -1,10 +0,0 @@
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}

978
yarn.lock

File diff suppressed because it is too large Load Diff