Minor fixes empty state (#3703)

* Minor fixes for Timeline empty states
* Refactored TimelineCreateButtonGroup
This commit is contained in:
Lucas Bordeau
2024-01-31 12:12:51 +01:00
committed by GitHub
parent ba77d7430a
commit d7e4b4116f
7 changed files with 62 additions and 55 deletions

View File

@ -26,7 +26,6 @@ export const StyledEmptyTitle = styled.div`
color: ${({ theme }) => theme.font.color.primary};
font-size: ${({ theme }) => theme.font.size.lg};
font-weight: ${({ theme }) => theme.font.weight.semiBold};
line-height: ${({ theme }) => theme.text.lineHeight.lg};
`;
export const StyledEmptySubTitle = styled.div`

View File

@ -38,7 +38,7 @@ const StyledTabListContainer = styled.div`
height: 40px;
`;
const TAB_LIST_COMPONENT_ID = 'show-page-right-tab-list';
export const TAB_LIST_COMPONENT_ID = 'show-page-right-tab-list';
type ShowPageRightContainerProps = {
targetableObject: ActivityTargetableObject;