update sheet height

This commit is contained in:
MaysWind
2025-12-06 00:44:27 +08:00
parent fdf6548cc9
commit 5850e0e298
7 changed files with 58 additions and 13 deletions
+7 -1
View File
@@ -1,5 +1,5 @@
<template>
<div ref="mapContainer" style="width: 100%" :class="mapClass" :style="finalMapStyle"></div>
<div ref="mapContainer" :class="'map-view-container' + (mapClass ? ` ${mapClass}` : '')" :style="finalMapStyle"></div>
<slot name="error-title"
:mapSupported="mapSupported" :mapDependencyLoaded="mapDependencyLoaded"
v-if="!mapSupported || !mapDependencyLoaded"></slot>
@@ -175,3 +175,9 @@ defineExpose({
zoomOut
});
</script>
<style>
.map-view-container {
width: 100%;
}
</style>