martmull
2025-01-27 15:23:28 +01:00
committed by GitHub
parent 4bb8e3a50e
commit 68c4f9cb0d
4 changed files with 49 additions and 53 deletions
@@ -0,0 +1,13 @@
import styled from '@emotion/styled';
const StyledStepListContainer = styled.div`
display: flex;
flex-direction: column;
height: 100%;
overflow-y: auto;
padding-block: ${({ theme }) => theme.spacing(1)};
padding-inline: ${({ theme }) => theme.spacing(2)};
`;
export { StyledStepListContainer as RightDrawerStepListContainer };
@@ -0,0 +1,13 @@
import styled from '@emotion/styled';
const StyledSelectStepTitle = styled.span`
color: ${({ theme }) => theme.font.color.tertiary};
font-size: ${({ theme }) => theme.font.size.sm};
font-weight: ${({ theme }) => theme.font.weight.medium};
padding-top: ${({ theme }) => theme.spacing(2)};
padding-bottom: ${({ theme }) => theme.spacing(1)};
padding-left: ${({ theme }) => theme.spacing(1)};
padding-right: ${({ theme }) => theme.spacing(1)};
`;
export { StyledSelectStepTitle as RightDrawerWorkflowSelectStepTitle };