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 db58dc2 commit 9ede217Copy full SHA for 9ede217
docs/src/.vitepress/config.mts
@@ -19,6 +19,13 @@ const navTemp = {
19
20
const nav = [
21
...navTemp.nav,
22
+ {
23
+ text: 'Julia',
24
+ items: [
25
+ { text: 'Julia', link: '/' },
26
+ { text: 'Python', link: 'https://ai.damtp.cam.ac.uk/pysr/dev/' }
27
+ ]
28
+ },
29
{
30
component: 'VersionPicker'
31
}
docs/src/.vitepress/theme/style.css
@@ -90,3 +90,11 @@ html.dark {
90
border-top: 1px solid var(--vp-c-divider);
91
padding-top: 48px;
92
93
+
94
+/* Make language picker match version picker styling (black text, not colored) */
95
+.VPNavBarMenuGroup button .text {
96
+ color: var(--vp-c-text-1) !important;
97
+}
98
+.VPNavBarMenuGroup:hover button .text {
99
+ color: var(--vp-c-text-2) !important;
100
0 commit comments