feature/initial-font-load #24

Merged
ilia merged 4 commits from feature/initial-font-load into main 2026-02-10 10:10:55 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit aefe03d811 - Show all commits

View File

@@ -23,7 +23,7 @@ import { scrollBreadcrumbsStore } from '../../model';
"
>
<div class="max-w-8xl mx-auto px-4 sm:px-6 h-full flex items-center gap-2 sm:gap-4">
<h1 class={cn('font-[Barlow] font-extralight text-sm sm:text-base')}>
<h1 class={cn('barlow font-extralight text-sm sm:text-base')}>
GLYPHDIFF
</h1>

View File

@@ -11,7 +11,7 @@ interface Props {
const { class: className }: Props = $props();
const baseClasses = 'font-[Barlow] font-thin text-5xl sm:text-6xl md:text-7xl lg:text-8xl';
const baseClasses = 'barlow font-thin text-5xl sm:text-6xl md:text-7xl lg:text-8xl';
const title = 'GLYPHDIFF';
</script>