mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
24 lines
431 B
Plaintext
24 lines
431 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);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
&-scroller {
|
|
flex: 1;
|
|
overflow: auto;
|
|
border-right: 1px dashed #f0f0f0;
|
|
}
|
|
}
|
|
|
|
.log-container {
|
|
display: flex;
|
|
position: relative;
|
|
}
|