Skip to content

Commit a2c2ab6

Browse files
committed
update docusaurus
1 parent 08f13e4 commit a2c2ab6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

website/src/components/Chip.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@ type ChipProps = {
99

1010
const COLORS = {
1111
dark: {
12-
chip: 'bg-gray-200 text-neutral-600',
1312
description: 'border-gray-200 bg-neutral-600 text-gray-200',
1413
},
1514
light: {
16-
chip: 'bg-neutral-500 text-gray-200',
1715
description: 'border-neutral-500 bg-gray-200 text-neutral-600',
1816
},
1917
} as const;
@@ -25,7 +23,7 @@ export const Chip = ({ children }: ChipProps) => {
2523
return (
2624
<div className="mb-2">
2725
<div
28-
className={`mb-1 inline-flex cursor-pointer items-center rounded-lg px-1.5 text-[11px] font-normal ${COLORS[colorMode].chip}`}
26+
className={`mb-1 inline-flex cursor-pointer items-center rounded-lg bg-neutral-500 px-1.5 text-[11px] font-normal text-gray-200 dark:bg-gray-200 dark:text-neutral-600`}
2927
onClick={() => setDescriptionHeight((prev) => (prev === 0 ? 'auto' : 0))}
3028
>
3129
<div className="mr-1">Note</div>

0 commit comments

Comments
 (0)