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 8d960b1e8e0b3ed7a306ea7803f5af66419b7b37 28 lines 514 B view raw
1--- 2import { themeConfig } from '@/config' 3import ThemeToggle from '@/components/ui/ThemeToggle.astro' 4--- 5 6<header> 7 <nav> 8 <a href="/">{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>