Skip to content

Commit 9d4ab50

Browse files
authored
Fix rounded-lg documentation (#2029)
Discovered in tailwindlabs/tailwindcss#15986.
1 parent 88f1637 commit 9d4ab50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docs/border-radius.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const description = "Utilities for controlling the border radius of an el
2727
[`${className}-xs`, properties.map((property) => `${property}: var(--radius-xs); /* 0.125rem (2px) */`).join("\n")],
2828
[`${className}-sm`, properties.map((property) => `${property}: var(--radius-sm); /* 0.25rem (4px) */`).join("\n")],
2929
[`${className}-md`, properties.map((property) => `${property}: var(--radius-md); /* 0.375rem (6px) */`).join("\n")],
30-
[`${className}-lg`, properties.map((property) => `${property}: var(--radius-lg); /* 0.75rem (8px) */`).join("\n")],
30+
[`${className}-lg`, properties.map((property) => `${property}: var(--radius-lg); /* 0.5rem (8px) */`).join("\n")],
3131
[`${className}-xl`, properties.map((property) => `${property}: var(--radius-xl); /* 0.75rem (12px) */`).join("\n")],
3232
[`${className}-2xl`, properties.map((property) => `${property}: var(--radius-2xl); /* 1rem (16px) */`).join("\n")],
3333
[

0 commit comments

Comments
 (0)