浏览代码

(feat: tabs) Reduce results card title sizes

tags/v0.3.5
bertieb 3 年前
父节点
当前提交
0ea3491d3f
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      src/ts/frontend.ts

+ 3
- 3
src/ts/frontend.ts 查看文件

@@ -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>`;
}

/**


正在加载...
取消
保存