fix(aerial): 촬영 히스토리 지도 리스트 위치 좌하단으로 이동

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Nan Kyung Lee 2026-03-17 10:25:39 +09:00
부모 7564f42918
커밋 19fdc489f3

파일 보기

@ -419,8 +419,8 @@ export function SatelliteRequest() {
<div className="text-[8px] text-text-3 font-korean mt-1.5 pt-1.5 border-t border-border"> {requests.length}</div>
</div>
{/* 지도 위 요청 리스트 (좌) */}
<div className="absolute top-3 left-3 w-[240px] max-h-[50vh] overflow-y-auto rounded-lg border border-border z-10" style={{ background: 'rgba(18,25,41,.92)', backdropFilter: 'blur(8px)', scrollbarWidth: 'thin', scrollbarColor: 'var(--bdL) transparent' }}>
{/* 지도 위 요청 리스트 (좌하단) */}
<div className="absolute bottom-3 left-3 w-[240px] max-h-[45vh] overflow-y-auto rounded-lg border border-border z-10" style={{ background: 'rgba(18,25,41,.92)', backdropFilter: 'blur(8px)', scrollbarWidth: 'thin', scrollbarColor: 'var(--bdL) transparent' }}>
<div className="px-3 py-2 border-b border-border text-[10px] font-bold text-text-2 font-korean sticky top-0" style={{ background: 'rgba(18,25,41,.95)' }}>📋 ({requests.length})</div>
{requests.map(r => {
const statusColor = r.status === '촬영중' ? '#eab308' : r.status === '완료' ? '#22c55e' : r.status === '취소' ? '#ef4444' : '#3b82f6'