atproto explorer
0
fork

Configure Feed

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

add blob title

+18
+6
src/main.tsx
··· 272 272 </div> 273 273 </Show> 274 274 </div> 275 + <Show when={useLocation().pathname === `/at/${params.repo}/blobs`}> 276 + <div class="mt-1 flex items-center"> 277 + <div class="i-lucide-binary mr-1 text-sm" /> 278 + <span>blobs</span> 279 + </div> 280 + </Show> 275 281 </div> 276 282 </Show> 277 283 <Show when={notice()}>
+12
src/styles/icons.css
··· 213 213 width: 1.2em; 214 214 height: 1.2em; 215 215 } 216 + 217 + .i-lucide-binary { 218 + --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Crect width='4' height='6' x='14' y='14' rx='2'/%3E%3Crect width='4' height='6' x='6' y='4' rx='2'/%3E%3Cpath d='M6 20h4m4-10h4M6 14h2v6m6-16h2v6'/%3E%3C/g%3E%3C/svg%3E"); 219 + -webkit-mask: var(--un-icon) no-repeat; 220 + mask: var(--un-icon) no-repeat; 221 + -webkit-mask-size: 100% 100%; 222 + mask-size: 100% 100%; 223 + background-color: currentColor; 224 + color: inherit; 225 + width: 1.2em; 226 + height: 1.2em; 227 + }