Compare commits

2 Commits

Author SHA1 Message Date
king 36c43012d9 Merge branch 'claude/great-wiles-945b3f': 로그인 brand-divider 호흡 애니메이션 추가 2026-05-27 01:51:14 +09:00
king 9a8dace7ec feat(ui): 로그인 페이지 brand-divider 호흡 애니메이션 추가
5초 주기 ease-in-out으로 48px → 100% → 48px 너비가 반복되는
divider-breathe 키프레임 애니메이션을 적용.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-27 01:43:51 +09:00
+7
View File
@@ -151,6 +151,13 @@ a { color: inherit; text-decoration: none; }
background: var(--blue); background: var(--blue);
border-radius: 2px; border-radius: 2px;
margin-top: 28px; margin-top: 28px;
animation: divider-breathe 5s ease-in-out infinite;
}
@keyframes divider-breathe {
0% { width: 48px; }
50% { width: 100%; }
100% { width: 48px; }
} }
.brand-footer { .brand-footer {