diff --git a/app/soapbox/components/ui/text/text.tsx b/app/soapbox/components/ui/text/text.tsx index 5ecfadf39..072491109 100644 --- a/app/soapbox/components/ui/text/text.tsx +++ b/app/soapbox/components/ui/text/text.tsx @@ -31,7 +31,7 @@ const weights = { const sizes = { xs: 'text-xs', sm: 'text-sm', - md: 'text-md', + md: 'text-base', lg: 'text-lg', xl: 'text-xl', '2xl': 'text-2xl', diff --git a/app/soapbox/features/ui/components/sign_up_panel.tsx b/app/soapbox/features/ui/components/sign_up_panel.tsx index 2a54c5c11..0aa09c25f 100644 --- a/app/soapbox/features/ui/components/sign_up_panel.tsx +++ b/app/soapbox/features/ui/components/sign_up_panel.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { FormattedMessage } from 'react-intl'; -import { Button, Stack, Text } from 'soapbox/components/ui'; +import { Button, HStack, Stack, Text } from 'soapbox/components/ui'; import { useAppSelector, useSoapboxConfig } from 'soapbox/hooks'; const SignUpPanel = () => { @@ -12,21 +12,43 @@ const SignUpPanel = () => { if (me || singleUserMode) return null; return ( - - - - - +
+ + + + + - - - + + + + + + - - +
+
+ + + + + + + + + + + + + +
+
+
); };