Selaa lähdekoodia

flow node styling

AykutSarac 3 vuotta sitten
vanhempi
commit
bb47ca8ade
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  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};