fix: alignment of Loading text in What's New screen

This commit is contained in:
Mo
2022-12-07 20:37:53 -06:00
parent a7ac715499
commit d3609853c6

View File

@@ -42,7 +42,11 @@ const WhatsNew = ({ application }: { application: WebApplication }) => {
}, [changelog, application])
if (!changelog) {
return <div>Loading...</div>
return (
<div className="align-center flex h-full w-full items-center text-center">
<span className="w-full font-bold">Loading...</span>
</div>
)
}
return (