Personal Site
0
fork

Configure Feed

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

Add some spacing in the embed for gods sake

+14 -4
+14 -4
src/components/home/feeds/Post.astro
··· 172 172 {external.thumb && ( 173 173 <img src={cidSrc(external.thumb, author.did)} alt="" /> 174 174 )} 175 - <span>{external.title}</span> 176 - <br /> 175 + <span class="name">{external.title}</span> 177 176 <span class="url">{external.url}</span> 178 177 </a> 179 178 ); ··· 296 295 image-rendering: smooth; 297 296 } 298 297 299 - .embed .external .url { 300 - opacity: 0.65; 298 + .embed .external { 299 + * { 300 + display: block; 301 + } 302 + 303 + img, 304 + .name { 305 + margin-bottom: 5px; 306 + } 307 + 308 + .url { 309 + opacity: 0.65; 310 + } 301 311 } 302 312 303 313 a {