1
0
Fork 0

wip(org): Updated account pages

This commit is contained in:
Joost De Cock 2023-03-27 19:21:27 +02:00
parent 9e3861b009
commit ff95af3a0f
26 changed files with 70 additions and 123 deletions

View file

@ -29,7 +29,7 @@ export const GithubSettings = ({ app, title = false, welcome = false }) => {
}
return (
<>
<div className="max-w-xl">
{title ? <h2 className="text-4xl">{t('githubTitle')}</h2> : null}
<div className="flex flex-row items-center mt-4">
<input
@ -42,6 +42,6 @@ export const GithubSettings = ({ app, title = false, welcome = false }) => {
</div>
<SaveSettingsButton app={app} btnProps={{ onClick: save }} />
{!welcome && <BackToAccountButton loading={app.state.loading} />}
</>
</div>
)
}