Hide reCAPTCHA badge with CSS visibility property

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-07-16 10:08:10 +00:00
parent 657d7681f4
commit c7c1763288
2 changed files with 10 additions and 0 deletions

View File

@@ -3584,4 +3584,9 @@ main {
/* For project types and other page heroes */ /* For project types and other page heroes */
.page-hero { .page-hero {
padding-top: 140px; /* 120px base + 20px for navbar */ padding-top: 140px; /* 120px base + 20px for navbar */
}
/* Hide reCAPTCHA badge */
.grecaptcha-badge {
visibility: hidden !important;
} }

View File

@@ -3536,4 +3536,9 @@ main {
/* For project types and other page heroes */ /* For project types and other page heroes */
.page-hero { .page-hero {
padding-top: 140px; /* 120px base + 20px for navbar */ padding-top: 140px; /* 120px base + 20px for navbar */
}
/* Hide reCAPTCHA badge */
.grecaptcha-badge {
visibility: hidden !important;
} }