From 1bb9d9c541af8f041788295bd134dd219dd77dd3 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 3 Jun 2025 02:53:00 +0300 Subject: [PATCH] css: hide border of links when active too --- site/assets/css/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/assets/css/default.css b/site/assets/css/default.css index 181e89a..c7fc64d 100644 --- a/site/assets/css/default.css +++ b/site/assets/css/default.css @@ -225,7 +225,7 @@ code:not(pre > code) { @apply border-1 border-dotted px-2 py-0.5 border-black dark:border-white; - a:hover & { + a:hover &, a:active & { @apply border-transparent; } }