Skip to content

Commit

Permalink
UI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
vgees committed Nov 18, 2023
1 parent 1a50853 commit f519ce1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ COPY . .

RUN yarn build

EXPOSE 3000
EXPOSE 8080

CMD [ "yarn", "start" ]
5 changes: 4 additions & 1 deletion packages/ui/src/views/canvas/CanvasNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,10 @@ const CanvasNode = ({ data }) => {
content={false}
sx={{
padding: 0,
borderColor: data.selected ? NodeHeader : NodeBorder
borderColor: data.selected ? NodeHeader : NodeBorder,
'&:hover': {
borderColor: data.selected ? NodeHeader : NodeHeader
}
}}
border={false}
>
Expand Down

0 comments on commit f519ce1

Please sign in to comment.