Fork of Chiri for Astro for my blog
0
fork

Configure Feed

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

style: tweak embedded content border-radius

the3ash 553250b1 413417b2

+4 -2
+1 -1
src/components/ui/GitHubCard.astro
··· 151 151 .prose .gc-container { 152 152 display: block; 153 153 border: 0.5px solid var(--border); 154 - border-radius: 10px; 154 + border-radius: 8px; 155 155 padding: 1rem 1.25rem 0.75rem 1.25rem; 156 156 margin: 1.25rem 0 1.75rem 0; 157 157 text-decoration: none;
+1 -1
src/components/ui/LinkCard.astro
··· 202 202 .prose .link-card { 203 203 display: block; 204 204 border: 0.5px solid var(--border); 205 - border-radius: 10px; 205 + border-radius: 8px; 206 206 overflow: hidden; 207 207 text-decoration: none; 208 208 color: inherit;
+2
src/plugins/remark-embedded-media.mjs
··· 88 88 return ` 89 89 <figure> 90 90 <iframe 91 + style="border-radius:6px" 91 92 src="https://www.youtube.com/embed/${videoId}" 92 93 title="YouTube video player" 93 94 loading="lazy" ··· 114 115 return ` 115 116 <figure> 116 117 <iframe 118 + style="border-radius:6px" 117 119 src="//player.bilibili.com/player.html?isOutside=true&bvid=${bvid}&p=1&autoplay=0&muted=0" 118 120 title="Bilibili video player" 119 121 loading="lazy"