From 40789a77ca29cfbe698733b28c0a60a6bd567115 Mon Sep 17 00:00:00 2001 From: Andrea Date: Fri, 1 Aug 2025 15:14:29 +0200 Subject: [PATCH] feat: correctly set color for links with code --- custom.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/custom.css b/custom.css index 3f6cdf7..378c275 100644 --- a/custom.css +++ b/custom.css @@ -7,3 +7,11 @@ .not-by-ai-image { text-align: right; } + +a code { + color: var(--pico-primary);; +} + +a:hover code { + text-decoration: underline; +}