We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dc0603 commit d746e42Copy full SHA for d746e42
src/code-view/internal.tsx
@@ -76,13 +76,13 @@ export function InternalCodeView({
76
<tr key={index}>
77
{lineNumbers && (
78
<td className={clsx(styles["line-number"], styles.unselectable)} aria-hidden={true}>
79
- <Box color="text-status-inactive" fontSize="body-m">
+ <Box variant="code" color="text-status-inactive" fontSize="body-m">
80
{index + 1}
81
</Box>
82
</td>
83
)}
84
<td className={styles["code-line"]}>
85
- <Box color="text-status-inactive" variant="code" fontSize="body-m">
+ <Box variant="code" fontSize="body-m">
86
<span
87
className={clsx(
88
code.props.className,
0 commit comments