Skip to content

Commit

Permalink
fix: 修复代码编辑器全屏时的样式问题
Browse files Browse the repository at this point in the history
  • Loading branch information
gene9831 committed Feb 6, 2024
1 parent caeb540 commit 36b802e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/common/component/MonacoEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export default {
}
&._full {
position: fixed;
top: 35px;
top: var(--base-top-panel-height);
z-index: 1;
padding-right: 15px;
right: var(--base-left-panel-width);
Expand All @@ -151,7 +151,7 @@ export default {
}
.fullscreen {
position: fixed;
top: 35px;
top: var(--base-top-panel-height);
bottom: 0;
left: calc(var(--base-nav-panel-width) + 1px);
right: var(--base-left-panel-width);
Expand Down

0 comments on commit 36b802e

Please sign in to comment.