Browse Source

(feat: tabs) Reduce results card title sizes

tags/v0.3.5
bertieb 3 years ago
parent
commit
0ea3491d3f
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/ts/frontend.ts

+ 3
- 3
src/ts/frontend.ts View File

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

/**
* h3 wrapper
*/
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
*/
function subsubTitle(text:string): string {
return `<h4 class="card-subtitle my-1">${text}</h4>`;
return `<h5 class="card-subtitle my-1">${text}</h4>`;
}

/**


Loading…
Cancel
Save