diff --git a/frontend/src/component/menu/Header/Header.tsx b/frontend/src/component/menu/Header/Header.tsx index 885633b11f3..95740e9d9f9 100644 --- a/frontend/src/component/menu/Header/Header.tsx +++ b/frontend/src/component/menu/Header/Header.tsx @@ -117,14 +117,20 @@ const styledIconProps = (theme: Theme) => ({ const StyledLink = styled(Link)(({ theme }) => focusable(theme)); +const StyledText = styled('div')(({ theme }) => ({ + display: 'flex', + alignItems: 'center', + gap: theme.spacing(1), +})); + const StyledLinkWithBetaBadge = ({ title, to, }: { title: string; to: string }) => ( -
+ {title} Beta -
+
);