style : table에 세로줄 넣기

This commit is contained in:
Yesol Choi
2025-06-01 16:12:11 +09:00
parent f63e240b04
commit 7cbaee5385

View File

@@ -611,4 +611,14 @@ const columns = computed(() => {
.approvalColumn6 { .approvalColumn6 {
flex: 0 0 60%!important; flex: 0 0 60%!important;
} }
.flex-table-header span {
border-right: 1px solid #ccc; /* 세로줄 */
padding: 8px;
}
/* 마지막 항목에는 선 제거 */
.flex-table-header span:last-child {
border-right: none;
}
</style> </style>