samantha's personal website!~ ✨ samanthanguyen.me
0
fork

Configure Feed

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

hyphenate classes

+3 -3
+1 -1
src/lib/Footer.svelte
··· 3 3 import { twJoin } from 'tailwind-merge' 4 4 </script> 5 5 6 - <div class="h-0 lg:h-[1px] bg-separator dark:bg-darkSeparator"></div> 6 + <div class="h-0 lg:h-[1px] bg-separator-light dark:bg-separator-dark"></div> 7 7 <footer class={twJoin( 8 8 "mt-[-1rem] lg:mt-0 flex flex-row justify-end", 9 9 )}>
+2 -2
tailwind.config.ts
··· 9 9 domine: ['Domine Variable', 'serif'], 10 10 }, 11 11 backgroundImage: { 12 - separator: 'linear-gradient(to right, transparent, #CFB4C5 50%, transparent)', 13 - darkSeparator: 'linear-gradient(to right, transparent, rgb(39 39 42), transparent)', 12 + 'separator-light': 'linear-gradient(to right, transparent, #CFB4C5 50%, transparent)', 13 + 'separator-dark': 'linear-gradient(to right, transparent, rgb(39 39 42), transparent)', 14 14 } 15 15 } 16 16 },