qinglong/src/pages/log/index.module.less
zt8989 52a79c4a97 增加左侧日志筛选 (#241)
* 增加左侧日志筛选

Co-authored-by: 周腾 <zhout@olymtech.com>
2021-06-06 15:28:03 +08:00

39 lines
673 B
Plaintext

@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);
}
}
}