objective categorical abstract machine language personal data server
65
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix frontend alert alignment

futurGH 0c142e33 9c52ddd9

+13 -7
+3 -1
frontend/src/templates/AdminInvitesPage.mlx
··· 141 141 </div> 142 142 | None -> 143 143 null ) 144 - <div className=(if List.length invites > 0 then "overflow-x-auto" else "overflow-x-hidden")> 144 + <div 145 + className=( if List.length invites > 0 then "overflow-x-auto" 146 + else "overflow-x-hidden" )> 145 147 <table 146 148 className="w-full grid border-collapse text-sm" 147 149 style=(ReactDOM.Style.make
+3 -1
frontend/src/templates/AdminUsersPage.mlx
··· 183 183 </div> 184 184 | None -> 185 185 null ) 186 - <div className=(if List.length actors > 0 then "overflow-x-auto" else "overflow-x-hidden")> 186 + <div 187 + className=( if List.length actors > 0 then "overflow-x-auto" 188 + else "overflow-x-hidden" )> 187 189 <table 188 190 className="w-full min-w-xl grid border-collapse text-sm" 189 191 style=(ReactDOM.Style.make
+4 -4
frontend/src/templates/MigratePage.mlx
··· 95 95 , "text-mana-100" 96 96 , <CheckmarkIcon className="w-4 h-4 mr-2 mt-0.5 flex-shrink-0" /> ) 97 97 in 98 - <div className=("mb-4 p-3 border rounded-lg " ^ bg_class)> 98 + <div className=("flex mb-4 p-3 border rounded-lg " ^ bg_class)> 99 99 <span className=("inline-flex items-start text-sm " ^ text_class)> 100 100 icon <span>(string message)</span> 101 101 </span> ··· 476 476 match old_account_deactivation_error with 477 477 | Some err -> 478 478 <div 479 - className="mb-4 p-3 bg-phoenix-100/10 border \ 479 + className="flex mb-4 p-3 bg-phoenix-100/10 border \ 480 480 border-phoenix-100/30 rounded-lg"> 481 481 <div className="flex items-start gap-2"> 482 482 <CircleAlertIcon ··· 505 505 </p> ) 506 506 ( if blobs_failed > 0 then 507 507 <div 508 - className="mb-4 p-3 bg-phoenix-100/10 border border-phoenix-100/30 \ 509 - rounded-lg"> 508 + className="flex mb-4 p-3 bg-phoenix-100/10 border \ 509 + border-phoenix-100/30 rounded-lg"> 510 510 <p className="text-sm text-phoenix-100"> 511 511 (string 512 512 (Printf.sprintf
+3 -1
frontend/src/templates/OauthAuthorizePage.mlx
··· 238 238 <div className="text-sm text-mist-100"> 239 239 (string 240 240 ( if level = `Full then 241 - "Manage your full identity including your @handle, with the ability to move your account to another PDS or permanently lock you out of your account." 241 + "Manage your full identity including your @handle, with \ 242 + the ability to move your account to another PDS or \ 243 + permanently lock you out of your account." 242 244 else "Change your @handle" ) ) 243 245 </div> 244 246 </div>