- add test button to workflow code step - add test tab to workflow code step https://github.com/user-attachments/assets/e180a827-7321-49a2-8026-88490c557da2  
13 lines
318 B
TypeScript
13 lines
318 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const StyledWorkflowStepBody = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: scroll;
|
|
padding: ${({ theme }) => theme.spacing(6)};
|
|
row-gap: ${({ theme }) => theme.spacing(6)};
|
|
flex: 1 1 auto;
|
|
`;
|
|
|
|
export { StyledWorkflowStepBody as WorkflowStepBody };
|