Skip to content

Commit

Permalink
feat: auth data for webhooks
Browse files Browse the repository at this point in the history
Refs: #169
  • Loading branch information
grigoriev committed Sep 1, 2024
1 parent 8d49f39 commit 33e787d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ String getCssContent(
String listStyles = new PdfExporterListStyleProvider(exportParams.getNumberedListStyles()).getStyle();
String css = pdfStyles
+ (exportParams.getHeadersColor() != null ?
" h1, h2, h3, h4, h5, h6, .content .title {"
+ " color: " + exportParams.getHeadersColor() + ";"
+ " }"
" h1, h2, h3, h4, h5, h6, .content .title {" +
" color: " + exportParams.getHeadersColor() + ";" +
" }"
: "")
+ listStyles;

Expand Down

0 comments on commit 33e787d

Please sign in to comment.