Skip to content

Commit ee0c2f2

Browse files
authored
Merge pull request #137 from docsbydoxdox/hotfix/bootstrap-title-link-color
[hotfix] Added color to package name link.
2 parents b6b62f8 + fcbfc43 commit ee0c2f2

File tree

1 file changed

+1
-1
lines changed
  • packages/doxdox-renderer-bootstrap/src

1 file changed

+1
-1
lines changed

packages/doxdox-renderer-bootstrap/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export default async (doc: Doc): Promise<string> => `<!DOCTYPE html>
132132
<div class="container p-5">
133133
${
134134
doc.homepage
135-
? `<h1 class="pkg-name"><a href="${doc.homepage}">${doc.name}</a></h1>`
135+
? `<h1 class="pkg-name"><a href="${doc.homepage}" class="text-white">${doc.name}</a></h1>`
136136
: `<h1 class="pkg-name">${doc.name}</h1>`
137137
}
138138

0 commit comments

Comments
 (0)