From b9c78d29354d0f0dfd46997f615b9f8f10143915 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 7 Jun 2026 18:08:20 -0300 Subject: [PATCH] remove 'Save 1 month' badge from billing toggle --- index.html | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/index.html b/index.html index 0f81494..e2eba50 100644 --- a/index.html +++ b/index.html @@ -959,17 +959,6 @@ transform: translateX(22px); background: #fff; } - .billing-save-badge { - font-size: 11px; - font-weight: 700; - color: var(--success); - background: rgba(63, 201, 126, 0.12); - padding: 2px 10px; - border-radius: 20px; - display: none; - } - .billing-save-badge.show { display: inline; } - @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; } .pricing-card.featured { transform: none; } @@ -1934,7 +1923,6 @@ Yearly - Save 1 month @@ -2467,7 +2455,6 @@ const yearly = document.getElementById('billing-toggle').checked; document.getElementById('billing-monthly-label').classList.toggle('active', !yearly); document.getElementById('billing-yearly-label').classList.toggle('active', yearly); - document.getElementById('billing-save-badge').classList.toggle('show', yearly); document.getElementById('bonus-trainee').classList.toggle('show', yearly); document.getElementById('bonus-junior').classList.toggle('show', yearly);