Add rounded corners to footer

Updated footer border-radius to include all corners instead of just top corners for improved visual appearance.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Claude Code 2025-07-07 22:45:34 -04:00
parent ec60d6bd2a
commit 4610796392

View file

@ -8,7 +8,7 @@ footer {
padding: $spacing-lg; padding: $spacing-lg;
background-color: var(--bg-secondary); background-color: var(--bg-secondary);
border-top: 1px solid var(--border-color); border-top: 1px solid var(--border-color);
border-radius: $border-radius-md $border-radius-md 0 0; border-radius: $border-radius-md;
p { p {
margin: $spacing-sm 0; margin: $spacing-sm 0;