Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix incorrect CSS variable name in text-shadow color API table
  • Loading branch information
dcastil authored Apr 6, 2025
commit e58ea786998ee16e1bda20397dabb06029801ca8
2 changes: 1 addition & 1 deletion src/docs/text-shadow.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const description = "Utilities for controlling the shadow of a text eleme
["text-shadow-transparent", "--tw-shadow-color transparent;"],
...Object.entries(colors).map(([name, value]) => [
`text-shadow-${name}`,
`--tw-shadow-color var(--color-${name}); /* ${value} */`,
`--tw-text-shadow-color var(--color-${name}); /* ${value} */`,
]),
]}
/>
Expand Down