My landing page, written in Astro hayden.moe
0
fork

Configure Feed

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

feat: improved headings in prose

+23
+23
tailwind.config.ts
··· 66 66 67 67 h1: { 68 68 color: theme('colors.white'), 69 + fontSize: '1em', 70 + '&::before': { 71 + content: '"# " / "" !important', 72 + color: 'var(--base03)', 73 + }, 74 + }, 75 + 76 + h2: { 77 + color: theme('colors.white'), 78 + fontSize: '1em', 79 + '&::before': { 80 + content: '"## " / "" !important', 81 + color: 'var(--base03)', 82 + }, 83 + }, 84 + 85 + h3: { 86 + color: theme('colors.white'), 87 + fontSize: '1em', 88 + '&::before': { 89 + content: '"### " / "" !important', 90 + color: 'var(--base03)', 91 + }, 69 92 }, 70 93 71 94 hr: {