bluesky client without react native baggage written in sveltekit
0
fork

Configure Feed

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

added hover effect to feed items

ansxor 07152e63 5cdff753

+6
+5
src/routes/feed/[[aturl]]/+layout.svelte
··· 26 26 font-size: 15px; 27 27 color: var(--color-feed-not-selected); 28 28 border-top: 3px solid transparent; 29 + transition: background-color 200ms; 30 + 31 + &:hover { 32 + background-color: var(--color-item-hover); 33 + } 29 34 } 30 35 31 36 .feedItem--selected {
+1
src/routes/layout.css
··· 7 7 --color-post-button: rgb(0, 106, 255); 8 8 --color-feed-selected: rgb(0, 0, 0); 9 9 --color-feed-not-selected: rgb(64, 81, 104); 10 + --color-item-hover: rgb(249, 250, 251); 10 11 } 11 12 12 13 html,