Skip to content

Commit 256b4cc

Browse files
authored
Fix missing color: on doc example (#2109)
Fixed a missing `color:` on a `&:hover` example in: https://tailwindcss.com/docs/colors#referencing-in-css
1 parent 47723e3 commit 256b4cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docs/colors.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ Colors are exposed as CSS variables in the `--color-*` namespace, so you can ref
461461
a {
462462
color: var(--color-blue-500);
463463
&:hover {
464-
var(--color-blue-800);
464+
color: var(--color-blue-800);
465465
}
466466
}
467467
}

0 commit comments

Comments
 (0)