fix:내 계약 현황 프로그래스바 비율 조정 (영업/매니저 절반)

- 영업/매니저 프로그래스바 너비를 w-32에서 flex-1로 변경
- 영업/매니저와 개발 진행 프로그래스바가 각각 절반씩 차지하도록 수정

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-01-31 20:26:42 +09:00
parent 6bfe2a986f
commit 7fc2b95b11

View File

@@ -122,8 +122,8 @@ class="inline-flex items-center gap-1 px-2 py-1 rounded text-xs font-medium bg-g
<!-- 진행 현황 (영업/매니저 프로그레스 ) -->
<div class="flex-1 min-w-0 flex items-center gap-4" id="prospect-progress-{{ $prospect->id }}">
{{-- 영업/매니저 프로그레스 (컴팩트) --}}
<div class="w-32 flex-shrink-0 space-y-1">
{{-- 영업/매니저 프로그레스 (절반) --}}
<div class="flex-1 space-y-1">
{{-- 영업 --}}
<div class="flex items-center gap-1" title="영업 {{ $prospectProgress['sales']['percentage'] }}%">
<span class="text-xs font-medium text-blue-600 w-5 flex-shrink-0"></span>
@@ -277,8 +277,8 @@ class="inline-flex items-center gap-1 px-2 py-1 rounded text-xs font-medium bg-g
<!-- 진행 현황 (영업/매니저 | 개발 진행) -->
<div class="flex-1 min-w-0 flex items-center gap-4" id="progress-{{ $tenant->id }}">
{{-- 좌측: 영업/매니저 프로그레스 (컴팩트) --}}
<div class="w-32 flex-shrink-0 space-y-1">
{{-- 좌측: 영업/매니저 프로그레스 (절반) --}}
<div class="flex-1 space-y-1">
{{-- 영업 --}}
<div class="flex items-center gap-1" title="영업 {{ $progress['sales']['percentage'] }}%">
<span class="text-xs font-medium text-blue-600 w-5 flex-shrink-0"></span>