Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix shadow cut #4299

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export const WorkflowWrapper = styled.div<{ height: string }>`
.react-flow__attribution {
background: transparent;
opacity: 0.5;
right: 133px;
}

.react-flow__attribution a {
Expand Down
1 change: 1 addition & 0 deletions apps/web/src/components/workflow/FlowEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,7 @@ const Wrapper = styled.div<{ dark: boolean }>`
.react-flow__attribution {
background: transparent;
opacity: 0.5;
right: 133px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change doesn't fix the attribution problem

This comment was marked as abuse.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@chankruze sorry for what I fixed
But would you please tell me the correct way to solve it .?
I literally want to learn new things.
And one thing more there is no tshirt in this year

This comment was marked as abuse.

This comment was marked as abuse.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jatinder14 We maintain respectful communication in this community. Please delete/retract your comment.

}
.react-flow__edge-path {
stroke: ${colors.B60};
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/workflow/NodeStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const StepCard: any = styled.div`
position: relative;
display: flex;
width: 280px;
height: 80px;
height: 105px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we don't want to change the workflow node size

box-shadow: ${({ theme }) => (theme.colorScheme === 'dark' ? shadows.dark : shadows.light)};
border-radius: 7px;
pointer-events: none;
Expand Down
Loading