From c7c1763288736d9cc17372a105ae236eb352c54e Mon Sep 17 00:00:00 2001 From: root Date: Wed, 16 Jul 2025 10:08:10 +0000 Subject: [PATCH] Hide reCAPTCHA badge with CSS visibility property MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- assets/css/main.css | 5 +++++ assets/css/main.min.css | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/assets/css/main.css b/assets/css/main.css index ef182cb..3100f9d 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -3584,4 +3584,9 @@ main { /* For project types and other page heroes */ .page-hero { padding-top: 140px; /* 120px base + 20px for navbar */ +} + +/* Hide reCAPTCHA badge */ +.grecaptcha-badge { + visibility: hidden !important; } \ No newline at end of file diff --git a/assets/css/main.min.css b/assets/css/main.min.css index 02f6c67..86cb51b 100644 --- a/assets/css/main.min.css +++ b/assets/css/main.min.css @@ -3536,4 +3536,9 @@ main { /* For project types and other page heroes */ .page-hero { padding-top: 140px; /* 120px base + 20px for navbar */ +} + +/* Hide reCAPTCHA badge */ +.grecaptcha-badge { + visibility: hidden !important; } \ No newline at end of file