fix: constrain layout map image sizing to prevent modal overflow

This commit is contained in:
이태훈
2026-06-22 13:08:27 +09:00
parent f41f2378d7
commit 4c34edd31c

View File

@@ -537,6 +537,8 @@
background-color: var(--canvas-soft-2);
border-radius: 4px;
overflow: hidden;
max-width: 100%;
max-height: 100%;
}
.layout-map-container.readonly {
@@ -546,12 +548,15 @@
.image-marker-wrapper {
position: relative;
display: inline-block;
max-width: 100%;
max-height: 100%;
}
.layout-map-img {
display: block;
max-width: 100%;
max-height: 75vh;
max-height: 70vh;
object-fit: contain;
user-select: none;
-webkit-user-drag: none;
}