Compare commits

..

No commits in common. "f5181cbe6e737df098c83227c04ccf8d6476caf8" and "3edbefddb5a5049a0a6d90c24be9a32467cb112b" have entirely different histories.

2 changed files with 8 additions and 4 deletions

View File

@ -90,9 +90,9 @@ export function ProjectCard({
<CardContent className="mt-auto flex flex-col px-2">
{tags?.badges && tags.badges.length > 0 && (
<div className="mt-2 flex flex-wrap gap-1">
{tags.badges.map((b, i) => (
{tags.badges.map((b) => (
<Badge
key={title + dates + b + i.toString()}
key={crypto.randomUUID()}
variant="secondary"
className={clsx(
'px-1 py-0 text-[10px]',

View File

@ -1,7 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src /**/*.{jsx,tsx}'], // tell tailwind where to look
darkMode: ['selector', '[data-theme="dark"]', '.dark'],
content: ['./src /**/*.{jsx,tsx
}'
], // tell tailwind where to look
darkMode: ['selector', '[data-theme="dark"
]', '.dark'
],
theme: {
extend: {},
},