@import "../containers/Home/style.css"; @import "../components/AppLayout/style.css"; @import "../components/HomeBlock/style.css"; body, html { background: transparent; margin: 0px; min-height: 100%; height: 100%; max-height: 100%; font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; } body { overflow: visible; overflow-y: auto; } #__next { height: 100%; display: flex; flex-direction: column; background: transparent; } .tree { font-family: sans-serif; padding-left: 0px; background-color: #222; color: #fff; } .treeNode { margin-left: 0px; } .nodeHeader { display: flex; align-items: center; cursor: pointer; padding: 5px; background-color: #333; color: #fff; } .nodeName { font-weight: bold; font-size: 12px; margin-right: 10px; } .subfolderBadge { background-color: #444; color: #aaa; padding: 2px 5px; border-radius: 5px; font-size: 0.8em; } .fileBadge { background-color: #444; color: #aaa; margin-left: 5px; padding: 2px 5px; border-radius: 5px; font-size: 0.8em; } .progressBarContainer { height: 5px; background-color: #555; border-radius: 5px; margin-top: 5px; } .progressBar { height: 100%; background-color: #1eff00; border-radius: 5px; } .yellow { background-color: yellow; } .red { background-color: red; } .children { margin-left: 10px; }