diff options
Diffstat (limited to 'source/features/useful-not-found-page.tsx')
-rw-r--r-- | source/features/useful-not-found-page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/useful-not-found-page.tsx b/source/features/useful-not-found-page.tsx index bae9b381..1ead2df1 100644 --- a/source/features/useful-not-found-page.tsx +++ b/source/features/useful-not-found-page.tsx @@ -36,7 +36,7 @@ async function is404(url: string): Promise<boolean> { } function getStrikeThrough(text: string): HTMLElement { - return <del className="color-text-tertiary color-fg-subtle">{text}</del>; + return <del className="color-fg-subtle">{text}</del>; } async function checkAnchor(anchor: HTMLElement): Promise<void> { |