Personal Site
0
fork

Configure Feed

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

Make links black with text decoration for focus/hover/active states

+12
+12
src/components/playing/NowPlaying.astro
··· 355 355 mask-image: var(--small-box-mask-png); 356 356 mask-size: contain; 357 357 } 358 + 359 + a { 360 + color: black; 361 + 362 + &:focus, &:hover { 363 + text-decoration-style: dashed; 364 + } 365 + 366 + &:active { 367 + text-decoration: none; 368 + } 369 + } 358 370 } 359 371 </style> 360 372