diff --git a/site/public/tools/fcc-compliance-check/index.html b/site/public/tools/fcc-compliance-check/index.html index 52ba720..bb90520 100644 --- a/site/public/tools/fcc-compliance-check/index.html +++ b/site/public/tools/fcc-compliance-check/index.html @@ -490,7 +490,8 @@ Send reset link if (btn && newCount > 0) { var link = document.createElement("a"); link.href = newUrl; - link.className = "inline-block px-6 py-2.5 font-semibold rounded-lg transition-colors text-sm shadow-lg" style="background:#f97316;color:#fff;padding:10px 24px"; + link.className = "inline-block px-6 py-2.5 font-semibold rounded-lg transition-colors text-sm shadow-lg"; + link.style.cssText = "background:#f97316;color:#fff;padding:10px 24px"; link.textContent = "Get Started \u2014 Fix " + newCount + " Item" + (newCount > 1 ? "s" : ""); btn.replaceWith(link); } else if (btn) {