1
0

Fix page width overflow issue and remove Favorite Card heading

- Reduce excessive scale values in animations (scale(50) → scale(3), scale(8) → scale(2.5))
- Add overflow: hidden to card-wrapper to prevent animation overflow
- Remove "Favorite Card" heading from user page
- Fix page width expanding issue caused by large-scale animations

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-07-18 15:12:31 +09:00
parent 4862afe8d6
commit 8aec22cc86
2 changed files with 10 additions and 10 deletions

View File

@@ -63,7 +63,6 @@ export default function UserPage() {
if (favCard) {
return (
<div className="mb-8">
<h2 className="text-xl font-bold mb-4 text-center">Favorite Card</h2>
<div className="flex justify-center">
<SpecialCard card={favCard} />
</div>