atmosphere explorer
0
fork

Configure Feed

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

fix submenu padding

Juliet 32faa492 fd2796a1

+8 -8
+4 -4
src/components/dropdown.tsx
··· 33 33 addToClipboard(props.content); 34 34 ctx?.setShowMenu(false); 35 35 }} 36 - class="flex items-center gap-1.5 rounded-md p-1 whitespace-nowrap hover:bg-neutral-200/50 active:bg-neutral-200 dark:hover:bg-neutral-700 dark:active:bg-neutral-600" 36 + class="flex items-center gap-2 rounded-md p-1.5 whitespace-nowrap hover:bg-neutral-200/50 active:bg-neutral-200 dark:hover:bg-neutral-700 dark:active:bg-neutral-600" 37 37 > 38 38 <Show when={props.icon}> 39 39 <span class={"iconify shrink-0 " + props.icon}></span> ··· 56 56 <A 57 57 href={props.href} 58 58 onClick={() => ctx?.setShowMenu(false)} 59 - class="flex items-center gap-1.5 rounded-md p-1 hover:bg-neutral-200/50 active:bg-neutral-200 dark:hover:bg-neutral-700 dark:active:bg-neutral-600" 59 + class="flex items-center gap-2 rounded-md p-1.5 hover:bg-neutral-200/50 active:bg-neutral-200 dark:hover:bg-neutral-700 dark:active:bg-neutral-600" 60 60 classList={{ "justify-between": props.external }} 61 61 target={props.newTab ? "_blank" : undefined} 62 62 > ··· 79 79 return ( 80 80 <button 81 81 onClick={props.onClick} 82 - class="flex items-center gap-1.5 rounded-md p-1 whitespace-nowrap hover:bg-neutral-200/50 active:bg-neutral-200 dark:hover:bg-neutral-700 dark:active:bg-neutral-600" 82 + class="flex items-center gap-2 rounded-md p-1.5 whitespace-nowrap hover:bg-neutral-200/50 active:bg-neutral-200 dark:hover:bg-neutral-700 dark:active:bg-neutral-600" 83 83 > 84 84 <Show when={props.icon}> 85 85 <span class={"iconify shrink-0 " + props.icon}></span> ··· 127 127 <div 128 128 ref={setMenu} 129 129 class={ 130 - "dark:bg-dark-300 dark:shadow-dark-700 absolute right-0 z-40 flex flex-col rounded-lg border-[0.5px] border-neutral-300 bg-neutral-50 shadow-md dark:border-neutral-700 " + 130 + "dark:bg-dark-300 dark:shadow-dark-700 absolute right-0 z-40 flex min-w-40 flex-col rounded-lg border-[0.5px] border-neutral-300 bg-neutral-50 p-2 shadow-md dark:border-neutral-700 " + 131 131 props.menuClass 132 132 } 133 133 >
+1 -1
src/layout.tsx
··· 142 142 <DropdownMenu 143 143 icon="lucide--menu text-lg" 144 144 buttonClass="rounded-lg p-1.5" 145 - menuClass="top-11 px-3 py-2 text-sm" 145 + menuClass="top-11 text-sm" 146 146 > 147 147 <NavMenu href="/jetstream" label="Jetstream" icon="lucide--radio-tower" /> 148 148 <NavMenu href="/firehose" label="Firehose" icon="lucide--droplet" />
+1 -1
src/views/pds.tsx
··· 148 148 <DropdownMenu 149 149 icon="lucide--ellipsis-vertical" 150 150 buttonClass="rounded-sm p-1.5" 151 - menuClass="top-9 p-2 text-sm" 151 + menuClass="top-9 text-sm" 152 152 > 153 153 <CopyMenu content={params.pds!} label="Copy PDS" icon="lucide--copy" /> 154 154 <NavMenu
+1 -1
src/views/record.tsx
··· 417 417 <DropdownMenu 418 418 icon="lucide--ellipsis-vertical" 419 419 buttonClass="rounded-sm p-1.5" 420 - menuClass="top-9 p-2 text-sm" 420 + menuClass="top-9 text-sm" 421 421 > 422 422 <CopyMenu 423 423 content={JSON.stringify(record()?.value, null, 2)}
+1 -1
src/views/repo.tsx
··· 306 306 <DropdownMenu 307 307 icon="lucide--ellipsis-vertical" 308 308 buttonClass="rounded-sm p-1.5" 309 - menuClass="top-9 p-2 text-sm" 309 + menuClass="top-9 text-sm" 310 310 > 311 311 <CopyMenu content={params.repo!} label="Copy DID" icon="lucide--copy" /> 312 312 <NavMenu