fix(coming-soon): bump near-invisible text opacity
All checks were successful
build-and-release / build (push) Successful in 1m45s

.cs-form-note ('No spam...') and .cs-footer-copy ('© 2026...') were
at 20-22% white opacity against the navy background - reported as
not visible. Bumped to 50-55%, still visually secondary/muted but
actually legible now.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Ashwin Kumar Sivakumar 2026-08-14 05:02:52 +05:30
parent 97f1b61979
commit 74f321099f

View file

@ -194,7 +194,9 @@ export default function ComingSoonPage() {
.cs-form-note {
font-size: 11px;
color: rgba(255,255,255,0.22);
/* Was 0.22 - close to invisible against the navy background.
0.55 keeps it visually secondary but actually legible. */
color: rgba(255,255,255,0.55);
margin-bottom: 0;
}
.cs-form-success {
@ -215,7 +217,8 @@ export default function ComingSoonPage() {
background: linear-gradient(to top, rgba(5,0,38,0.9) 0%, transparent 100%);
}
.cs-footer-copy {
font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em;
/* Was 0.2 - same near-invisible issue as .cs-form-note. */
font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em;
}
.cs-footer-powered {
display: flex; align-items: center; gap: 10px;