Adjust padding oops

folders
Rick Carlino 2019-12-18 14:45:38 -06:00
parent 0f8f8d63a4
commit 27e7b3f30a
1 changed files with 2 additions and 3 deletions

View File

@ -119,13 +119,12 @@ const FolderNameEditor = (props: FolderNodeProps) => {
</Popover>;
const faIcon = ` fa fa-chevron-${node.open ? "down" : "right"}`;
const STYLE_MOVE_ME: React.StyleHTMLAttributes<HTMLDivElement>["style"] = {
// marginTop: 0,
backgroundColor: "#ddd",
borderBottom: "1px solid #aaa",
display: "flex",
cursor: "pointer",
paddingTop: "0.5rem",
paddingBottom: "0.5rem",
padding: "0.5rem",
margin: "0.5rem",
height: "3.5rem"
};