Skip to content

Commit 1b458c4

Browse files
authored
Fix NavigationLoader not visible with bold header (#3681)
Co-authored-by: Nicolas Dorseuil <[email protected]>
1 parent b42b0b3 commit 1b458c4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/gitbook/src/components/primitives/NavigationLoader.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ export const NavigationLoader = () => {
1212
isNavigating ? 'block' : 'hidden animate-fade-out-slow'
1313
)}
1414
>
15-
<div className={tcls('h-full w-full origin-left animate-crawl bg-primary-solid')} />
15+
<div
16+
className={tcls(
17+
'h-full w-full origin-left animate-crawl bg-primary-solid theme-bold:bg-header-link'
18+
)}
19+
/>
1620
</div>
1721
);
1822
};

0 commit comments

Comments
 (0)