From 28b5687083c5c94691312901a8a0dc1033fd5720 Mon Sep 17 00:00:00 2001 From: Saurabh Kumar Bajpai Date: Tue, 16 Jun 2026 13:03:18 +0530 Subject: [PATCH 1/7] fix: handle QuotaExceededError in bookmark localStorage writes Wrap localStorage.setItem in syncBookmark and clearAllBookmarks with try/catch to prevent uncaught errors when storage quota is exceeded. Alert the user when bookmark operations cannot be persisted. --- index.html | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 370aa98f10..c59735451f 100644 --- a/index.html +++ b/index.html @@ -3651,7 +3651,12 @@

Date: Tue, 16 Jun 2026 13:03:56 +0530 Subject: [PATCH 2/7] chore: remove duplicate .sr-only CSS rule The .sr-only utility class was defined twice in the internal stylesheet (lines 204 and 436). Removed the duplicate at line 436 to keep the codebase DRY. --- index.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/index.html b/index.html index c59735451f..2eb9497372 100644 --- a/index.html +++ b/index.html @@ -433,8 +433,6 @@ .proposal-preview blockquote { border-left: 4px solid #ddd; padding-left: 1rem; color: #666; margin-bottom: 1rem; } .proposal-preview a { color: #f97316; text-decoration: underline; } .proposal-preview-error { color: #ba1a1a; font-size: 0.875rem; } - .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } - /* Custom Scrollbar for Modal */ .modal::-webkit-scrollbar { width: 6px; } .modal::-webkit-scrollbar-track { background: transparent; } From 5322b5b690b0e94031eb02574cb5d39640aa8222 Mon Sep 17 00:00:00 2001 From: Saurabh Kumar Bajpai Date: Wed, 17 Jun 2026 11:48:30 +0530 Subject: [PATCH 3/7] fix: update X/Twitter icon hover colors to match platform branding Changed from old Twitter blue (#1DA1F2) to X brand black (#000000) to maintain visual consistency with other social media icons. --- src/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/styles.css b/src/styles.css index aa003ad049..39ab533599 100644 --- a/src/styles.css +++ b/src/styles.css @@ -521,9 +521,9 @@ body{background:var(--bg);color:var(--ink);font-family:'Plus Jakarta Sans',sans- } .social-link.twitter:hover { - background: #1DA1F2; - border-color: #1DA1F2; - box-shadow: 0 0 12px rgba(29, 161, 242, 0.5); + background: #000000; + border-color: #000000; + box-shadow: 0 0 12px rgba(0, 0, 0, 0.5); } #back-to-top-btn { From d4f756725e718b19de3c423a313bd0dae7e8ebbb Mon Sep 17 00:00:00 2001 From: Saurabh Kumar Bajpai Date: Sun, 21 Jun 2026 12:32:58 +0530 Subject: [PATCH 4/7] fix: add target="_blank" and rel="noopener noreferrer" to privacy policy footer link (#1576) --- src/components/footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/footer.html b/src/components/footer.html index 376de9b068..637e71e447 100644 --- a/src/components/footer.html +++ b/src/components/footer.html @@ -110,7 +110,7 @@