From 04f52ce0c4c8bc3a340044182e986c0f97317519 Mon Sep 17 00:00:00 2001
From: tri <tri@thac.loan>
Date: Fri, 3 Oct 2025 20:32:31 +0700
Subject: [PATCH] make active nav item unclickable

---
 src/assets/style.css | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/assets/style.css b/src/assets/style.css
index 9d50d69..525e2ef 100644
--- a/src/assets/style.css
+++ b/src/assets/style.css
@@ -180,6 +180,13 @@ div.readme-content {
       border: 1px solid var(--fg);
       border-bottom: 1px solid var(--bg);
       z-index: 1;
+
+      a {
+        color: inherit;
+        text-decoration: none;
+        cursor: default;
+        pointer-events: none;
+      }
     }
   }
 }
-- 
2.47.3

