mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-08-28 20:10:36 +08:00
33 lines
434 B
SCSS
33 lines
434 B
SCSS
.magic-code-editor {
|
|
width: 100%;
|
|
}
|
|
|
|
.magic-code-editor-wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
|
|
&.full-screen {
|
|
position: fixed;
|
|
z-index: 10000;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.magic-code-editor-content {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.margin {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.magic-code-editor-full-screen-icon {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 0;
|
|
z-index: 1;
|
|
}
|
|
}
|