|
@@ -102,21 +102,21 @@ function buildCharts(): string { |
|
|
* h2 wrapper |
|
|
* h2 wrapper |
|
|
*/ |
|
|
*/ |
|
|
function bigTitle(text:string): string { |
|
|
function bigTitle(text:string): string { |
|
|
return `<h2 class="card-title">${text}</h2>`; |
|
|
|
|
|
|
|
|
return `<h3 class="card-title">${text}</h2>`; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* h3 wrapper |
|
|
* h3 wrapper |
|
|
*/ |
|
|
*/ |
|
|
function subTitle(text:string): string { |
|
|
function subTitle(text:string): string { |
|
|
return `<h3 class="card-subtitle my-1">${text}</h3>`; |
|
|
|
|
|
|
|
|
return `<h4 class="card-subtitle my-1">${text}</h3>`; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* h4 wrapper |
|
|
* h4 wrapper |
|
|
*/ |
|
|
*/ |
|
|
function subsubTitle(text:string): string { |
|
|
function subsubTitle(text:string): string { |
|
|
return `<h4 class="card-subtitle my-1">${text}</h4>`; |
|
|
|
|
|
|
|
|
return `<h5 class="card-subtitle my-1">${text}</h4>`; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|