Fix seatmap slot matching and update member modal layout

This commit is contained in:
hyunho
2026-03-27 18:12:20 +09:00
parent d66614123e
commit 24852d4401
11 changed files with 517 additions and 89 deletions

View File

@@ -351,11 +351,21 @@ body {
gap: 12px;
}
.member-edit-profile-card {
display: flex;
flex-direction: column;
gap: 12px;
}
.member-seat-field {
flex: 1 1 auto;
min-height: 0;
}
.member-seat-field-emphasis .seat-preview-card {
min-height: 100%;
}
.member-detail-top-row {
width: 100%;
display: grid;
@@ -386,6 +396,17 @@ body {
margin-top: 10px;
}
.member-inline-info-grid-stacked {
grid-template-columns: minmax(0, 1fr);
margin-top: 0;
}
.member-name-field-compact {
display: flex;
flex-direction: column;
gap: 6px;
}
.member-inline-info-card {
min-width: 0;
display: flex;
@@ -496,6 +517,7 @@ body {
border-radius: 18px;
background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
overflow: hidden;
min-height: 100%;
}
.seat-preview-head {
@@ -579,6 +601,32 @@ body {
font-weight: 900;
}
.member-edit-right-pane .seat-preview-head {
padding: 18px 20px 12px;
}
.member-edit-right-pane .seat-preview-head strong {
font-size: 18px;
}
.member-edit-right-pane .seat-preview-head p {
font-size: 12px;
}
.member-edit-right-pane .seat-preview-badge {
font-size: 12px;
padding: 8px 12px;
}
.member-edit-right-pane .seat-preview-canvas {
min-height: 360px;
}
.member-edit-right-pane .seat-preview-frame,
.member-edit-right-pane .seat-preview-placeholder {
min-height: 320px;
}
.seat-preview-placeholder-icon {
width: 52px;
@@ -1105,4 +1153,4 @@ body {
color: white;
border-color: #4f46e5;
box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}
}