Fix third-party lib css

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-09-12 13:57:52 +03:00
parent 13337dbb66
commit 8524b5af13
2 changed files with 20 additions and 16 deletions

View File

@@ -1,19 +1,19 @@
.toc ol {
counter-reset: item;
list-style: decimal;
line-height: 1.25;
counter-reset: item !important;
list-style: decimal !important;
line-height: 1.25 !important;
}
.toc li:before {
content: counters(item, ".") " ";
counter-increment: item;
content: counters(item, ".") " " !important;
counter-increment: item !important;
}
a.toc-link {
text-decoration: none;
font-weight: normal;
text-decoration: none !important;
font-weight: normal !important;
}
.toc>.toc-list li {
list-style: none
list-style: none !important;
}