login 수정1

This commit is contained in:
wallace
2025-11-28 15:40:39 +09:00
parent 04feb84192
commit adae8b130b
2 changed files with 2 additions and 46 deletions

View File

@@ -293,7 +293,7 @@ export default function LoginPage() {
{/* 로그인 버튼 */}
<button
type="submit"
className={`h-[56px] w-full rounded-lg text-[16px] font-semibold text-white transition-opacity cursor-pointer mb-3 hover:bg-[#1F2B91] ${userId.trim().length > 0 && password.trim().length > 0 ? "bg-active-button" : "bg-inactive-button"}`}
className={`h-[56px] w-full rounded-lg text-[16px] font-semibold text-white transition-opacity cursor-pointer mb-3 ${userId.trim().length > 0 && password.trim().length > 0 ? "bg-active-button hover:bg-[#1F2B91]" : "bg-inactive-button"}`}
>
</button>