File tree 9 files changed +17
-11
lines changed
create_private_message/[userid]
9 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const CreateDirectMessagePage = async (props: {
18
18
} ) ;
19
19
20
20
return (
21
- < div className = { "m-2 lg:m -4" } >
21
+ < div className = { "m-2 lg:mx -4" } >
22
22
< h1 className = { "mb-4 text-xl font-bold" } >
23
23
{ "Composing direct message..." }
24
24
</ h1 >
Original file line number Diff line number Diff line change @@ -91,7 +91,9 @@ const InboxPage = async (props: {
91
91
] ;
92
92
93
93
return (
94
- < div className = { "m-2 lg:m-4" } >
94
+ < div className = { "m-2 lg:mx-4" } >
95
+ < h1 className = { "mb-2 text-xl font-bold" } > { "Inbox" } </ h1 >
96
+
95
97
< SearchParamLinks
96
98
currentActiveValue = { currentType }
97
99
label = { "Type" }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { resetPasswordAction } from "@/app/login_reset/loginResetActions";
4
4
5
5
const ForgotPasswordPage = ( ) => {
6
6
return (
7
- < div className = { "m-2 lg:m -4" } >
7
+ < div className = { "m-2 lg:mx -4" } >
8
8
< h1 className = { "text-xl font-bold" } > { "Forgot password" } </ h1 >
9
9
< div className = { "mt-10 max-w-[600px] text-gray-400" } >
10
10
{
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { SubmitButton } from "@/app/(ui)/button/SubmitButton";
3
3
4
4
const ForgotPasswordPage = ( ) => {
5
5
return (
6
- < div className = { "m-2 lg:m -4" } >
6
+ < div className = { "m-2 lg:mx -4" } >
7
7
< h1 className = { "text-xl font-bold" } > { "Forgot password" } </ h1 >
8
8
< div className = { "mt-10 max-w-[600px] text-gray-300" } >
9
9
{ "A password reset link has been sent to your e-mail." }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { setNewPasswordAfterReset } from "@/app/login_reset/loginResetActions";
4
4
5
5
const PasswordChangePage = ( props : { readonly params : { token : string } } ) => {
6
6
return (
7
- < div className = { "m-2 lg:m -4" } >
7
+ < div className = { "m-2 lg:mx -4" } >
8
8
< h1 className = { "text-xl font-bold" } > { "Set new password" } </ h1 >
9
9
10
10
< div >
Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ const SavedPage = async (props: {
46
46
( comments . length ?? 0 ) === limit || ( posts . length ?? 0 ) === limit ;
47
47
48
48
return (
49
- < div className = { "m-3 " } >
50
- < h1 className = { "text-xl font-bold" } > { "Saved" } </ h1 >
51
- < div className = { "mt-2" } >
49
+ < div className = { "m-2 lg:mx-4 " } >
50
+ < h1 className = { "mb-2 text-xl font-bold" } > { "Saved" } </ h1 >
51
+ < div >
52
52
< SearchParamLinks
53
53
currentActiveValue = { currentSortType }
54
54
label = { "Sort" }
Original file line number Diff line number Diff line change @@ -74,7 +74,9 @@ const SearchPage = async (props: {
74
74
( data ?. users . length ?? 0 ) === limit ;
75
75
76
76
return (
77
- < div className = { "m-2 lg:m-4" } >
77
+ < div className = { "m-2 lg:mx-4" } >
78
+ < h1 className = { "mb-2 text-xl font-bold" } > { "Search" } </ h1 >
79
+
78
80
< div className = { "" } >
79
81
< SearchParamLinks
80
82
currentActiveValue = { currentSearchType }
Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ const SettingsPage = async () => {
15
15
16
16
return (
17
17
< div className = { "m-2 lg:mx-4" } >
18
- < div className = { "flex flex-wrap items-center" } >
18
+ < div className = { "flex flex-wrap items-center gap-2" } >
19
+ < h1 className = { "mb-2 text-xl font-bold" } > { "User settings" } </ h1 >
20
+
19
21
< StyledLink
20
22
className = { "mr-auto flex items-center gap-1" }
21
23
href = { `/u/${ loggedInUser . local_user_view . person . name } ` }
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ const UserPage = async (props: UserPageProps) => {
100
100
] ) ;
101
101
102
102
return (
103
- < div className = { "m-2 flex flex-col gap-2 lg:m -4" } >
103
+ < div className = { "m-2 flex flex-col gap-2 lg:mx -4" } >
104
104
< Header view = { personView } />
105
105
< div className = { "" } >
106
106
< MarkdownWithFetchedContent id = { personView . person . id } type = { "person" } />
You can’t perform that action at this time.
0 commit comments