73 lines
1010 B
Plaintext
73 lines
1010 B
Plaintext
.container {
|
|
background: var(--oak-bg-color-container);
|
|
min-height: 100vh;
|
|
|
|
.article {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
.menu {
|
|
display: flex;
|
|
}
|
|
|
|
.editor {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
.article_v {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.menu {
|
|
display: flex;
|
|
}
|
|
|
|
.editor {
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.space {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.tree {
|
|
:global {
|
|
.ant-tree-title {
|
|
display: flex;
|
|
flex: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.siderPanel {
|
|
flex-shrink: 0;
|
|
height: 100%;
|
|
// border-right: 1px solid var(--oak-border-color);
|
|
overflow-y: hidden;
|
|
overflow-x: hidden;
|
|
position: fixed;
|
|
|
|
.icon {
|
|
font-size: 20px;
|
|
}
|
|
|
|
:global {
|
|
.ant-layout-sider-children {
|
|
// height: calc(100% - 48px);
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.drawerPanel {
|
|
:global {
|
|
.ant-drawer-body {
|
|
padding: 0 !important;
|
|
}
|
|
}
|
|
} |