Fix styling of body of file manager

dhcp-server
Pat Hartl 2023-09-11 01:54:58 -05:00
parent 38bec7c9aa
commit 046013491d
2 changed files with 7 additions and 1 deletions

View File

@ -91,7 +91,7 @@
</Space>
</GridRow>
<GridRow>
<GridRow Class="file-manager-body">
<GridCol Span="6" Class="file-manager-tree">
<Tree TItem="FileManagerDirectory"
DataSource="Directories"

View File

@ -72,6 +72,8 @@
.file-manager {
background: #fff;
display: flex;
flex-direction: column;
}
.file-manager-nav {
@ -107,6 +109,10 @@
background: rgba(0, 0, 0, 0.018);
}
.file-manager .file-manager-body {
flex-grow: 1;
}
.file-manager .ant-tree-treenode {
padding-left: 4px;
}