FIX(app): fix transparent for black background

- Fix transparency issue
- Improve dark mode styling
This commit is contained in:
2025-11-25 09:19:58 +09:00
parent 471cde3986
commit f3f2449783
2 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ commonLabels:
# 이미지 태그 설정 # 이미지 태그 설정
images: images:
- name: ghcr.io/mayne0213/todo - name: ghcr.io/mayne0213/todo
newTag: main-sha-40d453dfd169d1ccefbfbaf774f50645500ace32 newTag: main-sha-1ce645675f4e070193b369dbbd4d9ac73184c6af
patchesStrategicMerge: patchesStrategicMerge:
- deployment-patch.yaml - deployment-patch.yaml

View File

@@ -69,7 +69,7 @@ export default function PasswordModal({ children }: PasswordModalProps) {
// 인증 상태 확인 중일 때 로딩 표시 // 인증 상태 확인 중일 때 로딩 표시
if (isChecking) { if (isChecking) {
return ( return (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-50"> <div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50">
<div className="bg-white rounded-lg shadow-xl p-8"> <div className="bg-white rounded-lg shadow-xl p-8">
<p className="text-gray-600"> ...</p> <p className="text-gray-600"> ...</p>
</div> </div>
@@ -82,7 +82,7 @@ export default function PasswordModal({ children }: PasswordModalProps) {
} }
return ( return (
<div className="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-50"> <div className="fixed inset-0 z-50 flex items-center justify-center bg-black/50">
<div className="bg-white rounded-lg shadow-xl p-8 w-full max-w-md mx-4"> <div className="bg-white rounded-lg shadow-xl p-8 w-full max-w-md mx-4">
<h2 className="text-2xl font-bold text-gray-800 mb-4 text-center"> <h2 className="text-2xl font-bold text-gray-800 mb-4 text-center">