Skip to content

Commit

Permalink
fix(ui): lighten node background in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jamaljsr committed Jan 20, 2020
1 parent 37851d4 commit 2a5fde4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/designer/custom/NodeInner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { Loader, StatusBadge } from 'components/common';

const Styled = {
Node: styled.div<{ size?: ISize }>`
border: 1px solid #232323;
border: 1px solid #303030;
border-radius: 2px;
background-color: #141414;
background-color: #1f1f1f;
padding: 20px;
font-weight: bold;
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions src/components/designer/custom/Port.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { Tooltip } from 'antd';
const Outer = styled.div<{ type: string }>`
width: 18px;
height: 18px;
${props => props.type && `border-${props.type}: 2px solid #232323;`}
${props => props.type && `border-${props.type}: 2px solid #303030;`}
border-radius: 50%;
background: #141414;
background: #1f1f1f;
cursor: pointer;
display: flex;
justify-content: center;
Expand Down

0 comments on commit 2a5fde4

Please sign in to comment.