atmosphere explorer
0
fork

Configure Feed

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

remove color transition in search suggestions

Juliet 84097748 e47c5536

+2 -2
+2 -2
src/components/search.tsx
··· 252 252 {(prefixItem, index) => ( 253 253 <button 254 254 type="button" 255 - class={`flex items-center rounded-lg p-2 transition-colors duration-150 ${ 255 + class={`flex items-center rounded-lg p-2 ${ 256 256 index() === selectedIndex() ? 257 257 "bg-neutral-200 dark:bg-neutral-700" 258 258 : "hover:bg-neutral-200 active:bg-neutral-300 dark:hover:bg-neutral-700 dark:active:bg-neutral-600" ··· 277 277 const adjustedIndex = getPrefixSuggestions().length + index(); 278 278 return ( 279 279 <A 280 - class={`flex items-center gap-2 rounded-lg p-2 transition-colors duration-150 ${ 280 + class={`flex items-center gap-2 rounded-lg p-2 ${ 281 281 adjustedIndex === selectedIndex() ? 282 282 "bg-neutral-200 dark:bg-neutral-700" 283 283 : "hover:bg-neutral-200 active:bg-neutral-300 dark:hover:bg-neutral-700 dark:active:bg-neutral-600"