diff --git a/app/soapbox/components/birthday_reminders.js b/app/soapbox/components/birthday_reminders.js index 12fa249fd..c6991dfc7 100644 --- a/app/soapbox/components/birthday_reminders.js +++ b/app/soapbox/components/birthday_reminders.js @@ -11,6 +11,7 @@ import { Link } from 'react-router-dom'; import { fetchBirthdayReminders } from 'soapbox/actions/accounts'; import { openModal } from 'soapbox/actions/modals'; import Icon from 'soapbox/components/icon'; +import { HStack, Text } from 'soapbox/components/ui'; import { makeGetAccount } from 'soapbox/selectors'; const mapStateToProps = (state, props) => { @@ -72,7 +73,7 @@ class BirthdayReminders extends ImmutablePureComponent { const link = (
-
-
- -
+
+ + - - {this.renderMessage()} - + + {this.renderMessage()} + +
diff --git a/app/soapbox/components/status.tsx b/app/soapbox/components/status.tsx index 8276bed34..b5b57b07e 100644 --- a/app/soapbox/components/status.tsx +++ b/app/soapbox/components/status.tsx @@ -379,7 +379,7 @@ class Status extends ImmutablePureComponent { prepend = (
- + diff --git a/app/soapbox/components/ui/modal/modal.tsx b/app/soapbox/components/ui/modal/modal.tsx index d6d23ce92..d9a7e96ab 100644 --- a/app/soapbox/components/ui/modal/modal.tsx +++ b/app/soapbox/components/ui/modal/modal.tsx @@ -46,7 +46,7 @@ const Modal: React.FC = ({ }, [buttonRef]); return ( -
+
diff --git a/app/soapbox/features/ui/components/profile_info_panel.js b/app/soapbox/features/ui/components/profile_info_panel.js index ce89ee6cb..57dfcf48e 100644 --- a/app/soapbox/features/ui/components/profile_info_panel.js +++ b/app/soapbox/features/ui/components/profile_info_panel.js @@ -92,7 +92,7 @@ class ProfileInfoPanel extends ImmutablePureComponent { @@ -191,7 +191,7 @@ class ProfileInfoPanel extends ImmutablePureComponent { @@ -208,7 +208,7 @@ class ProfileInfoPanel extends ImmutablePureComponent { @@ -221,13 +221,13 @@ class ProfileInfoPanel extends ImmutablePureComponent {
{isSafeUrl(account.get('website')) ? ( - {account.get('website')} + {account.get('website')} ) : ( account.get('website') )} diff --git a/app/soapbox/features/ui/components/reactions_modal.js b/app/soapbox/features/ui/components/reactions_modal.js index bea2c3567..36f79ea66 100644 --- a/app/soapbox/features/ui/components/reactions_modal.js +++ b/app/soapbox/features/ui/components/reactions_modal.js @@ -107,6 +107,7 @@ class ReactionsModal extends React.PureComponent { {accounts.map((account) => ,