Skip to content

Commit b1c7aaa

Browse files
committed
fix sticky, links on light mode
1 parent 641cc36 commit b1c7aaa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/docs/DocsFilters.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ const versions = ["New", "2.10", "2.9", "2.8", "2.7"]
163163
updatePosition();
164164
window.addEventListener("DOMContentLoaded", () => {
165165
updatePosition();
166-
filters.classList.remove("!fixed"); // fix layout shift on load
166+
filters.classList.remove("fixed"); // fix layout shift on load
167167
filters.classList.add("sticky"); // fix layout shift on load
168168
});
169169

src/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ h3 {
7777
}
7878

7979
p a {
80-
@apply underline text-blue-300;
80+
@apply underline text-blue-500 dark:text-blue-300;
8181
}
8282

8383
.outfit {

0 commit comments

Comments
 (0)