Conversation
|
@pradnya1212 is attempting to deploy a commit to the 007's projects Team on Vercel. A member of the Team first needs to authorize it. |
Thanks for creating a PR for your Issue!
|
| /* ===== Contact UI Improvement ===== */ | ||
|
|
||
| .contact-box { | ||
| background: linear-gradient(135deg, #2c3e50, #4ca1af); | ||
| padding: 30px; | ||
| border-radius: 12px; | ||
| color: white; | ||
| box-shadow: 0 6px 20px rgba(0,0,0,0.3); | ||
| margin-top: 20px; | ||
| } | ||
|
|
||
| .contact-box:hover { | ||
| transform: scale(1.02); | ||
| transition: 0.3s ease; | ||
| } | ||
|
|
||
| .contact-info ul li { | ||
| margin: 10px 0; | ||
| font-size: 16px; | ||
| } |
There was a problem hiding this comment.
Correctness: The .contact-box, .contact-box:hover, and .contact-info ul li rules are placed inside the #scrollTopBtn declaration block — standard CSS does not support nesting like this, so all three new rule sets will be silently ignored by browsers that don't support the CSS Nesting spec.
🤖 AI Agent Prompt for Cursor/Windsurf
📋 Copy this prompt to your AI coding assistant (Cursor, Windsurf, etc.) to get help fixing this issue
In static/styles.css, lines 781-800 introduce new CSS rules (.contact-box, .contact-box:hover, .contact-info ul li) that are accidentally placed inside the #scrollTopBtn declaration block (before its closing brace). Move the closing brace of #scrollTopBtn to immediately after `transition: transform 0.4s ease;`, then place all three new rule sets after that closing brace so they are top-level CSS rules. This makes the styles valid and ensures they apply correctly in all browsers.
There was a problem hiding this comment.
Thanks for the feedback! I will fix the CSS nesting issue and update the PR.
There was a problem hiding this comment.
Thanks for the feedback! I will fix the CSS nesting issue and update the PR.
Confidence Score: 2/5 - Changes NeededNot safe to merge — the CSS changes in Key Findings:
Files requiring special attention
|
|
Hi, I have worked on this issue. Please review my PR. |
Which issue does this PR close?
Rationale for this change
What changes are included in this PR?
Are these changes tested?
Are there any user-facing changes?
Enhanced Contact Us section with improved styling, spacing, and hover effects.
Fixes #255