change font sizes in header box

23c18de4859abb21126a9a9e899ed38d1c663b91

Tucker McKnight <tucker@pangolin.lan> | Sun Jan 11 2026

change font sizes in header box
js_templates/repo.ts:47
Before
46
47
48
49
50
51
52
        <div class="px-4 pt-3 bezel-header">
          <div class="row">
            <div class="col-12 col-xl-6">
              <h1 class="display-2 text-white"><em>${repo.name}</em></h1>
              ${repo.description ? '<p class="text-white fs-5">' + repo.description + '</p>' : ''}
            </div>
            <div class="col-12 col-xl-6 d-flex flex-column justify-content-around">
              <div class="row flex-grow-1 align-items-stretch language-percent-row">
After
46
47
48
49
50
51
52
        <div class="px-4 pt-3 bezel-header">
          <div class="row">
            <div class="col-12 col-xl-6">
              <h1 class="display-3 text-white"><em>${repo.name}</em></h1>
              ${repo.description ? '<p class="text-white fs-4">' + repo.description + '</p>' : ''}
            </div>
            <div class="col-12 col-xl-6 d-flex flex-column justify-content-around">
              <div class="row flex-grow-1 align-items-stretch language-percent-row">