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: fixed react flow link #4302

Merged
merged 11 commits into from
Oct 4, 2023
15 changes: 15 additions & 0 deletions apps/web/src/components/quick-start/common/Workflow.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,26 @@ export const WorkflowWrapper = styled.div<{ height: string }>`
cursor: default;
}

.react-flow {
overflow: visible;
}

.react-flow__attribution {
background: transparent;
opacity: 0.5;
}

.react-flow__attribution a {
position: relative;
font-size: initial;
top: 25px;
right: 173px;
}

.react-flow__attribution a:hover {
color: lightpink !important;
}

.react-flow__handle {
background: transparent;
border: 1px solid ${({ theme }) => (theme.colorScheme === 'dark' ? colors.B40 : colors.B60)};
Expand Down
Loading