Skip to content
Snippets Groups Projects
Commit 0c705f07 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire: Committed by Reiter, Christoph
Browse files

Add function getDocumentationCSS()

parent 63b42da7
No related branches found
No related tags found
No related merge requests found
......@@ -404,3 +404,26 @@ export function getTagCSS() {
}
`;
}
export function getDocumentationCSS() {
// language=css
return css`
.documentation h1, .documentation h2, .documentation h3 {
margin: 1em 0 0.8em 0;
}
.documentation p {
margin: 1em 0;
}
.documentation a {
border-bottom: 1px solid var(--vpu-muted-text);
transition: background-color 0.15s, color 0.15s;
}
.documentation a:hover {
color: #fff;
background-color: #000;
}
`;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment