tmagic-editor/packages/editor/src/theme/floating-box.scss
2023-12-07 19:40:40 +08:00

31 lines
568 B
SCSS

.m-editor-float-box {
position: absolute;
background-color: #fff;
z-index: 100;
border: 1px solid $--border-color;
display: flex;
flex-direction: column;
.m-editor-float-box-title {
text-align: center;
font-size: 14px;
font-weight: 600;
padding: 5px;
cursor: move;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid $--border-color;
}
.m-editor-float-box-body {
padding: 5px;
flex: 1;
overflow: auto;
}
}
.m-editor-floating-box-moveable {
opacity: 0;
}