fix: 선박 팝업 텍스트 색상 고정 — 라이트 모드에서 정보 안 보이는 문제 해결

This commit is contained in:
Nan Kyung Lee 2026-03-20 08:45:23 +09:00
부모 bb7c428528
커밋 8f4558a81c
2개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제

파일 보기

@ -1252,8 +1252,8 @@
}
.ship-tag-secondary {
background: var(--kcg-border, rgba(100, 116, 139, 0.3));
color: var(--kcg-text-secondary, #94a3b8);
background: rgba(100, 116, 139, 0.3);
color: #94a3b8;
}
.ship-tag-dim {
@ -1297,7 +1297,7 @@
}
.ship-popup-label {
color: var(--kcg-muted, #64748b);
color: #888;
font-size: 10px;
flex-shrink: 0;
margin-right: 4px;
@ -1305,7 +1305,7 @@
.ship-popup-value {
font-size: 10px;
color: var(--kcg-text, #e2e8f0);
color: #e2e8f0;
text-align: right;
white-space: nowrap;
overflow: hidden;
@ -1324,7 +1324,7 @@
.ship-popup-timestamp {
font-size: 9px;
color: var(--kcg-dim, #64748b);
color: #64748b;
}
.ship-popup-link {

파일 보기

@ -699,7 +699,7 @@ const ShipPopup = memo(function ShipPopup({ ship, onClose, fleet }: { ship: Ship
{/* Header — draggable handle */}
<div
className="ship-popup-header"
style={{ background: isMil ? 'var(--kcg-card)' : '#1565c0', cursor: 'grab' }}
style={{ background: isMil ? '#1a1a2e' : '#1565c0', cursor: 'grab' }}
>
{flagEmoji && <span className="text-base leading-none">{flagEmoji}</span>}
<strong className="ship-popup-name">{ship.name}</strong>