See the best posts from any Bluesky account
0
fork

Configure Feed

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

Widen searchahead dropdown in navbar and add favicon

Make the navbar's typeahead dropdown wider (min-w-56) so long handles
don't truncate, anchored to the right edge. Add a trophy emoji favicon.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+2 -1
+1
resources/views/components/layout.edge
··· 3 3 <head> 4 4 <meta charset="utf-8" /> 5 5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 + <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🏆</text></svg>" /> 6 7 <script nonce="{{ cspNonce }}"> 7 8 (function(){if(document.cookie.indexOf('theme=')!==-1)return;var d=window.matchMedia('(prefers-color-scheme: dark)').matches;var v=d?'dark':'light';document.cookie='theme='+v+';path=/;max-age=31536000;SameSite=Lax';if(d)document.documentElement.classList.add('dark')})() 8 9 </script>
+1 -1
resources/views/components/search_ahead.edge
··· 24 24 <div 25 25 x-show="open" 26 26 x-cloak 27 - class="absolute z-50 mt-1 w-full bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-lg shadow-lg overflow-hidden" 27 + class="absolute z-50 mt-1 {{ size === 'sm' ? 'min-w-56 right-0' : 'w-full' }} bg-white dark:bg-gray-900 border border-gray-200 dark:border-gray-700 rounded-lg shadow-lg overflow-hidden" 28 28 > 29 29 <template x-for="(actor, index) in actors"> 30 30 <button