Skip to content

Commit 3a70de6

Browse files
jonathanperisclaude
andcommitted
fix: restore footer line spacing above social icons
The .footer-line rule had margin-bottom: 0 which was overriding the Tailwind mb-8 utility due to CSS layer specificity. Replaced with an explicit margin-bottom: 2rem directly in the CSS rule. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f30a99d commit 3a70de6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,6 @@ body::after {
326326
.footer-line {
327327
height: 1px;
328328
background: linear-gradient(90deg, transparent 0%, var(--color-violet) 30%, var(--color-violet-light) 60%, transparent 100%);
329-
margin-bottom: 0;
330329
opacity: 0.4;
330+
margin-bottom: 2rem;
331331
}

0 commit comments

Comments
 (0)