Files
sam-kd/modal/modal.css
hskwon aca1767eb9 초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경
- DB 연결 하드코딩 → .env 기반으로 변경
- MySQL strict mode DATE 오류 수정
2025-12-10 20:14:31 +09:00

65 lines
1.0 KiB
CSS

/* modal/modal.css */
#bulkEntryModal * {
font-size: 12px;
box-sizing: border-box;
}
#bulkEntryModal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 1050;
}
#bulkEntryModal > div {
background: white;
/* 좌우 여백 없애고 상하만 40px 띄우기 */
margin: 40px auto ;
padding: 20px;
border-radius: 8px;
position: relative;
}
.bulk-modal-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.bulk-modal-header h3 {
margin: 0;
}
.bulk-close-btn {
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
}
.bulk-modal-body {
max-height: 70vh;
overflow: auto;
}
.bulk-modal-footer {
text-align: right;
margin-top: 10px;
}
.table {
width: 100%;
border-collapse: collapse;
}
.table th,
.table td {
border: 1px solid #ccc;
padding: 4px;
}