Skip to content

Commit 8f635a3

Browse files
committed
fix: update text color for color display and add title to dropdown menu trigger
1 parent 3638654 commit 8f635a3

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

apps/website/src/components/docs/doc-color.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const DocColor = ({ shade, color }: DocColorProps) => {
3333
/>
3434
<div className="flex flex-col items-center justify-center space-y-0.5">
3535
<p className="text-sm font-medium">{shade}</p>
36-
<p className="font-mono text-xs tracking-tight text-neutral-500">
36+
<p className="font-mono text-xs tracking-tight text-neutral-600 dark:text-neutral-400">
3737
{color}
3838
</p>
3939
</div>

apps/website/src/components/docs/doc-options.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ const DocOptions = ({ content, folder, file }: DocOptionsProps) => {
5252
<span>{isCopied ? "Copied" : "Copy"}</span>
5353
</Button>
5454
<DropdownMenuTrigger
55+
title="More options"
5556
className={cn(
5657
buttonVariants({
5758
variant: "outline",

0 commit comments

Comments
 (0)