Commit 7609bb60 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

feat: add Noto Sans Mono font to use for durations + button to access new video clip form in list

parent db0e4272
Loading
Loading
Loading
Loading
+9.04 KiB

File added.

No diff preview for this file type.

+9 −0
Original line number Diff line number Diff line
@@ -34,4 +34,13 @@
    font-display: swap;
    src: url("/fonts/inter-600.woff2") format("woff2");
  }

  /* noto-sans-mono-regular */
  @font-face {
    font-family: "Noto Sans Mono";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/noto-sans-mono-regular.woff2") format("woff2");
  }
}
+1 −0
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@ return [
    ],
    'title' => 'Video clip: {videoClipLabel}',
    'download_clip' => 'Download clip',
    'create' => 'New video clip',
    'go_to_page' => 'Go to clip page',
    'delete' => 'Delete clip',
    'logs' => 'Job logs',
+1 −0
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@ return [
    ],
    'title' => 'Extrait vidéo : {videoClipLabel}',
    'download_clip' => 'Télécharger l’extrait',
    'create' => 'Nouvel extrait vidéo',
    'go_to_page' => 'Aller à la page de l’extrait',
    'delete' => 'Supprimer l’extrait',
    'logs' => 'Historique d’exécution',
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ module.exports = {
      fontFamily: {
        sans: ["Inter", ...defaultTheme.fontFamily.sans],
        display: ["Kumbh Sans", ...defaultTheme.fontFamily.sans],
        mono: ["Noto Sans Mono", ...defaultTheme.fontFamily.mono],
      },
      textColor: {
        skin: {
Loading