diff --git a/app/soapbox/components/birthday_reminders.js b/app/soapbox/components/birthday_reminders.js index a00a1ba333..8c1896bf7b 100644 Binary files a/app/soapbox/components/birthday_reminders.js and b/app/soapbox/components/birthday_reminders.js differ diff --git a/app/soapbox/features/birthdays/account.js b/app/soapbox/features/birthdays/account.js new file mode 100644 index 0000000000..141fd7b8e0 Binary files /dev/null and b/app/soapbox/features/birthdays/account.js differ diff --git a/app/soapbox/features/ui/components/birthdays_modal.js b/app/soapbox/features/ui/components/birthdays_modal.js index 995ad5cc56..9a0744ba7a 100644 Binary files a/app/soapbox/features/ui/components/birthdays_modal.js and b/app/soapbox/features/ui/components/birthdays_modal.js differ diff --git a/app/soapbox/features/ui/components/profile_info_panel.js b/app/soapbox/features/ui/components/profile_info_panel.js index f2af515f58..98abf8d86d 100644 Binary files a/app/soapbox/features/ui/components/profile_info_panel.js and b/app/soapbox/features/ui/components/profile_info_panel.js differ diff --git a/app/soapbox/reducers/__tests__/user_lists-test.js b/app/soapbox/reducers/__tests__/user_lists-test.js index 49af79bcc8..a168f3cdcb 100644 Binary files a/app/soapbox/reducers/__tests__/user_lists-test.js and b/app/soapbox/reducers/__tests__/user_lists-test.js differ diff --git a/app/styles/accounts.scss b/app/styles/accounts.scss index 7b0a53fe96..21579f647b 100644 --- a/app/styles/accounts.scss +++ b/app/styles/accounts.scss @@ -554,3 +554,9 @@ a .account__avatar { padding-right: 3px; } } + +.account__birth-date { + display: flex; + align-items: center; + white-space: nowrap; +} diff --git a/docs/store.md b/docs/store.md index 7f866bacbc..7c0bff506f 100644 --- a/docs/store.md +++ b/docs/store.md @@ -126,7 +126,8 @@ If it's not documented, it's because I inherited it from Mastodon and I don't kn groups: {}, followers: {}, mutes: {}, - favourited_by: {} + favourited_by: {}, + birthday_reminders: {} } ```