Kaynağa Gözat

(feat: tabs) Reduce results card title sizes

tags/v0.3.5
bertieb 3 yıl önce
ebeveyn
işleme
0ea3491d3f
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. +3
    -3
      src/ts/frontend.ts

+ 3
- 3
src/ts/frontend.ts Dosyayı Görüntüle

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

/**


Yükleniyor…
İptal
Kaydet