소스 검색

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

/**


불러오는 중...
취소
저장