Skip to content

Commit 939f0e1

Browse files
authored
Merge pull request #43 from drivecore/update-link-styling-42
Update link styling: darker gray-blue color and remove default underline
2 parents a1d1979 + d333f05 commit 939f0e1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/getting-started/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"position": 2,
44
"link": {
55
"type": "doc",
6-
"id": "getting-started"
6+
"id": "getting-started/index"
77
}
88
}

docs/usage/_category_.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"position": 3,
44
"link": {
55
"type": "doc",
6-
"id": "usage"
6+
"id": "usage/index"
77
}
88
}

docusaurus.config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ const config: Config = {
113113
label: 'Documentation',
114114
},
115115
{
116-
to: '/docs/getting-started',
116+
to: '/docs/getting-started/',
117117
label: 'Getting Started',
118118
position: 'left',
119119
},
120120
{
121-
to: '/docs/usage',
121+
to: '/docs/usage/',
122122
label: 'Usage',
123123
position: 'left'
124124
},

src/css/custom.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
--ifm-color-primary-lightest: #0e85ff;
1616
--ifm-code-font-size: 95%;
1717
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
18-
--ifm-link-color: #0066cc;
19-
--ifm-link-hover-color: #0057ad;
20-
--ifm-link-decoration: underline;
18+
--ifm-link-color: #3a5978; /* Darker gray-blue */
19+
--ifm-link-hover-color: #2c4359; /* Even darker on hover */
20+
--ifm-link-decoration: none; /* Remove default underline */
2121
}

0 commit comments

Comments
 (0)