增加左侧日志筛选 (#241)

* 增加左侧日志筛选

Co-authored-by: 周腾 <zhout@olymtech.com>
This commit is contained in:
zt8989
2021-06-06 15:28:03 +08:00
committed by GitHub
co-authored by 周腾
parent ce323d0703
commit 6549eeaf10
5 changed files with 146 additions and 31 deletions
+38
View File
@@ -0,0 +1,38 @@
@import '~@/styles/variable.less';
.left-tree {
&-container {
overflow: hidden;
position: relative;
background-color: #fff;
height: calc(100vh - 128px);
height: calc(100vh - var(--vh-offset, 0px) - 128px);
width: @tree-width;
display: flex;
flex-direction: column;
}
&-scroller {
flex: 1;
overflow: auto;
}
&-search {
margin-bottom: 16px;
}
}
.log-container {
display: flex;
}
:global {
.log-wrapper {
.ant-pro-grid-content.wide .ant-pro-page-container-children-content {
padding: 0;
background-color: #f8f8f8;
}
.CodeMirror {
width: calc(100% - 32px - @tree-width);
}
}
}