WIP PWA for Grain
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: restore working font configuration

Reverted to var(--font-size-lg) and removed link element.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+1 -2
+1 -2
src/components/organisms/grain-header.js
··· 21 21 } 22 22 .logo { 23 23 font-family: 'Bebas Neue', sans-serif; 24 - font-size: 28px; 24 + font-size: var(--font-size-lg); 25 25 font-weight: 700; 26 26 color: var(--color-text-primary); 27 27 text-decoration: none; ··· 38 38 39 39 render() { 40 40 return html` 41 - <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet"> 42 41 <header> 43 42 <button class="logo" @click=${this.#handleLogoClick}>Grain</button> 44 43 </header>