Fork of Chiri for Astro for my blog
0
fork

Configure Feed

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

at a1e6ead60fb44c152fefa3a86179bcf2b84d6249 28 lines 540 B view raw
1--- 2import { themeConfig } from '@/config' 3import ThemeToggle from '@/components/ui/ThemeToggle.astro' 4--- 5 6<header> 7 <nav> 8 <a href="/" style="font-size: large;">{themeConfig.site.title}</a> 9 <ThemeToggle /> 10 </nav> 11</header> 12<style> 13 header { 14 margin: 0; 15 } 16 nav { 17 display: flex; 18 justify-content: space-between; 19 align-items: center; 20 } 21 header a { 22 font-weight: var(--font-weight-bold); 23 color: var(--text-primary); 24 text-decoration: none; 25 min-width: 3rem; 26 display: inline-block; 27 } 28</style>