Browse Source

flow node styling

AykutSarac 3 years ago
parent
commit
bb47ca8ade
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/pages/editor/LiveEditor/Node.tsx

+ 2 - 1
src/pages/editor/LiveEditor/Node.tsx

@@ -3,7 +3,8 @@ import { Handle, Position } from "react-flow-renderer";
 import styled from "styled-components";
 
 const StyledWrapper = styled.div<{ isArray?: boolean }>`
-  background: ${({ theme }) => theme.BLACK_SECONDARY};
+  background: ${({ theme }) => theme.BLACK_PRIMARY};
+  border: 1px solid ${({ theme }) => theme.BLACK};
   border-radius: 5px;
   padding: 16px;
   color: ${({ theme, isArray }) => isArray && theme.SEAGREEN};