Aaron Todd
04/29/2021, 3:56 PMcustomStyleSheets
to be applied to all child projects/docs in a multimodule setup? It works for the "root" index.html
but all subsequent pages are missing the custom style sheetMarcin Aman
04/29/2021, 4:21 PMAaron Todd
04/29/2021, 4:23 PMallprojects {
tasks.withType<org.jetbrains.dokka.gradle.AbstractDokkaTask>().configureEach {
pluginsMapConfiguration.put("org.jetbrains.dokka.base.DokkaBase", """
{
"customStyleSheets": ["${rootProject.file("docs/custom.css")}"],
}
""")
}
}
I've tried a few variations. I think replacing logo-styles.css
(or any of the other default sheets) is a viable workaround