Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 23 additions & 6 deletions src/components/table/css/ApprovalTable.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@
background: white;
border-radius: 8px;
box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
color: black
color: black;
}

.approval-table-title {
font-size: 20px;
font-weight: 700;
color: black
color: black;
}

.approval-table {
width: 100%;
min-width: 900px;
table-layout: fixed;
border-collapse: collapse;
color: black
color: black;
}

.approval-table thead {
display: table-header-group;
background-color: #f5f5f5;
text-align: left;
color: black
color: black;
}

.approval-table th,
Expand All @@ -40,16 +40,33 @@
padding-left: 50px;
}

.approval-table td:nth-child(3),
.approval-table th:nth-child(3) {
padding-right: 10px;
}

.approval-table td:nth-child(4),
.approval-table th:nth-child(4) {
padding-left: 0px;
padding-right: 40px;
}

.approval-table td:nth-child(5),
.approval-table th:nth-child(5) {
padding-left: 10px;
padding-right: 20px;
}

.approval-table td:last-child,
.approval-table th:last-child {
width: 120px;
width: 100px;
padding-left: 16px;
padding-right: 16px;
}

.approval-table-name {
font-weight: 500;
color: black
color: black;
}


Expand Down
1 change: 1 addition & 0 deletions src/pages/PassPendingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const pendingColumns = [
{ key: "passId", label: "보호자ID"},
{ key: "guardianName", label: "보호자명" },
{ key: "patientCode", label: "환자번호" },
{ key: "startAt", label: "출입시작시간"},
{ key: "createdDt", label: "발급요청일자"},
]

Expand Down