auto: 2026-09-20 02:30 (ESD_LAPTOP)

This commit is contained in:
2026-09-20 02:30:13 +09:00
parent f3653fe333
commit 090eb7d975
9 changed files with 419 additions and 11 deletions
@@ -217,3 +217,53 @@
.m01-master__empty {
color: var(--color-text-muted);
}
/* 조달 찾기 모달 */
.m01-procure {
position: fixed;
inset: 0;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.45);
}
.m01-procure__box {
display: flex;
flex-direction: column;
gap: 8px;
width: min(640px, 92vw);
max-height: 80vh;
padding: 16px;
border-radius: 8px;
background: var(--color-surface, #fff);
}
.m01-procure__list {
display: flex;
flex-direction: column;
gap: 4px;
overflow-y: auto;
min-height: 120px;
}
.m01-procure__item {
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 6px 8px;
border: 1px solid var(--color-border, #ccc);
border-radius: 4px;
background: transparent;
cursor: pointer;
text-align: left;
}
.m01-procure__foot {
display: flex;
justify-content: flex-end;
gap: 8px;
}
.m01-procure__cond {
display: flex;
flex-wrap: wrap;
gap: 8px;
}