Personal Site

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

vielle.dev 01ae5c63 30f6c94e

verified
+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