From 195866f6ffce8793a39babfef52c8c3dc24377d2 Mon Sep 17 00:00:00 2001 From: Geeta Neha Date: Tue, 21 Oct 2025 09:33:26 +0530 Subject: [PATCH] Styled navbar properly for pricing plans page. --- src/pages/pricing.html | 137 +++++++++++++++++++++-------------------- 1 file changed, 71 insertions(+), 66 deletions(-) diff --git a/src/pages/pricing.html b/src/pages/pricing.html index db4d0124..a7db5966 100644 --- a/src/pages/pricing.html +++ b/src/pages/pricing.html @@ -4,7 +4,7 @@ Pricing Plans | VehiGo - + @@ -706,7 +711,7 @@ class="btn btn-outline-secondary theme-toggle-btn" type="button" > - Light + Light @@ -967,13 +972,13 @@

Stay in the loop

themeToggle.classList.remove("btn-outline-secondary"); themeToggle.classList.add("btn-outline-light"); themeToggle.innerHTML = - 'Light'; + 'Light'; } else { document.body.classList.remove("dark-theme"); themeToggle.classList.remove("btn-outline-light"); themeToggle.classList.add("btn-outline-secondary"); themeToggle.innerHTML = - 'Dark'; + 'Dark'; } themeToggle.addEventListener("click", function (e) { e.preventDefault(); @@ -984,14 +989,14 @@

Stay in the loop

themeToggle.classList.remove("btn-outline-light"); themeToggle.classList.add("btn-outline-secondary"); themeToggle.innerHTML = - 'Dark'; + 'Dark'; } else { document.body.classList.add("dark-theme"); localStorage.setItem("theme", "dark"); themeToggle.classList.remove("btn-outline-secondary"); themeToggle.classList.add("btn-outline-light"); themeToggle.innerHTML = - 'Light'; + 'Light'; } }); } else {