diff --git a/code/core/src/components/components/Tabs/EmptyTabContent.tsx b/code/core/src/components/components/Tabs/EmptyTabContent.tsx index 8b8b88b53e37..8cdc5c0100ce 100644 --- a/code/core/src/components/components/Tabs/EmptyTabContent.tsx +++ b/code/core/src/components/components/Tabs/EmptyTabContent.tsx @@ -27,6 +27,10 @@ const Title = styled.div(({ theme }) => ({ color: theme.color.defaultText, })); +const Footer = styled.div(({ theme }) => ({ + fontSize: theme.typography.size.s2 - 1, +})); + const Description = styled.div(({ theme }) => ({ fontWeight: theme.typography.weight.regular, fontSize: theme.typography.size.s2 - 1, @@ -47,7 +51,7 @@ export const EmptyTabContent = ({ title, description, footer }: Props) => {