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 ul

the3ash be98fd8e 7470e767

+9 -7
+9 -7
src/styles/post.css
··· 224 224 225 225 .prose ul li { 226 226 position: relative; 227 - padding-left: 0.3125rem; 227 + padding-left: 0.125rem; 228 228 margin-bottom: 0.5em; 229 229 } 230 230 ··· 238 238 } 239 239 240 240 .prose ul li::before { 241 - content: '•'; 241 + --size: 0.3125rem; 242 + content: ''; 242 243 position: absolute; 243 - left: -1.25rem; 244 - top: -0.05em; 245 - width: 1.5rem; 246 - text-align: center; 247 - color: var(--text-tertiary); 244 + left: -0.785rem; 245 + top: calc((1.75em - var(--size)) / 2); 246 + width: var(--size); 247 + height: var(--size); 248 + border-radius: 50%; 249 + background-color: var(--text-tertiary); 248 250 } 249 251 250 252 /* Ordered lists */