this repo has no description
0
fork

Configure Feed

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

Handle memorial accounts

+11 -13
+1 -1
src/components/account-info.css
··· 340 340 } 341 341 .timeline-start .account-container header .account-block { 342 342 font-size: 175%; 343 - margin-bottom: -8px; 343 + /* margin-bottom: -8px; */ 344 344 line-height: 1.1; 345 345 letter-spacing: -0.5px; 346 346 mix-blend-mode: multiply;
+10 -12
src/components/account-info.jsx
··· 98 98 statusesCount, 99 99 url, 100 100 username, 101 + memorial, 101 102 } = info || {}; 102 103 let headerIsAvatar = false; 103 104 let { header, headerStatic } = info || {}; ··· 266 267 /> 267 268 </header> 268 269 <main tabIndex="-1"> 269 - {bot && ( 270 - <> 271 - <span class="tag"> 272 - <Icon icon="bot" /> Automated 273 - </span> 274 - </> 270 + {!!memorial && <span class="tag">In Memoriam</span>} 271 + {!!bot && ( 272 + <span class="tag"> 273 + <Icon icon="bot" /> Automated 274 + </span> 275 275 )} 276 - {group && ( 277 - <> 278 - <span class="tag"> 279 - <Icon icon="group" /> Group 280 - </span> 281 - </> 276 + {!!group && ( 277 + <span class="tag"> 278 + <Icon icon="group" /> Group 279 + </span> 282 280 )} 283 281 <div 284 282 class="note"