Compare commits
2 Commits
3edbefddb5
...
f5181cbe6e
Author | SHA1 | Date | |
---|---|---|---|
f5181cbe6e | |||
6f7986a574 |
@ -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) => (
|
||||
{tags.badges.map((b, i) => (
|
||||
<Badge
|
||||
key={crypto.randomUUID()}
|
||||
key={title + dates + b + i.toString()}
|
||||
variant="secondary"
|
||||
className={clsx(
|
||||
'px-1 py-0 text-[10px]',
|
||||
|
@ -1,11 +1,7 @@
|
||||
/** @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: {},
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user