fix(tkfb): 연차 현황 빈 행 제거 + 입력칸 너비 확대

- card/card-body 래퍼 제거 → 테이블 위 빈 행 해소
- num-input: width:55px → min-width:65px; width:auto (음수 소수점 대응)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-03-30 10:04:28 +09:00
parent 549e78ba61
commit eea99359b5

View File

@@ -87,7 +87,8 @@
/* 입력 필드 */ /* 입력 필드 */
.num-input { .num-input {
width: 55px; min-width: 65px;
width: auto;
padding: 0.25rem; padding: 0.25rem;
border: 1px solid #d1d5db; border: 1px solid #d1d5db;
border-radius: 0.25rem; border-radius: 0.25rem;
@@ -286,8 +287,7 @@
</div> </div>
<!-- 테이블 --> <!-- 테이블 -->
<div class="card"> <div style="overflow-x:auto;">
<div class="card-body" style="padding:0;overflow-x:auto;">
<table class="data-table"> <table class="data-table">
<thead> <thead>
<tr> <tr>
@@ -306,7 +306,6 @@
<tr><td colspan="9" class="loading">로딩 중...</td></tr> <tr><td colspan="9" class="loading">로딩 중...</td></tr>
</tbody> </tbody>
</table> </table>
</div>
</div> </div>
<!-- 저장 바 --> <!-- 저장 바 -->