Files
bim_engine/src/bim-engine.css

32 lines
583 B
CSS
Raw Normal View History

.bim-engine-wrapper {
position: relative;
width: 100%;
height: 100%;
font-family: sans-serif;
2025-12-04 18:39:07 +08:00
color: #bf1d1d;
box-sizing: border-box;
2025-12-04 18:39:07 +08:00
overflow: hidden;
/* 防止内容溢出 */
}
2025-12-04 18:39:07 +08:00
/* ... (中间代码不变) ... */
/* 操作按钮组容器 */
.bim-engine-opt-btn-container {
position: absolute;
/* 改为绝对定位 */
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 100;
2025-12-16 11:57:44 +08:00
}
/* 构造树按钮 */
.bim-construct-tree-btn {
position: absolute;
top: 20px;
left: 20px !important;
z-index: 100;
}