fix style issues

This commit is contained in:
Sven Czarnian
2022-11-04 15:27:30 +01:00
parent 42817619d0
commit 5bca340bdd

View File

@@ -22,8 +22,8 @@ export const Login: React.FC = () => {
const footer = ( const footer = (
<span> <span>
<Button <Button
label='Login with VATSIM SSO' label='Login with VATSIM'
className='p-button p-button-success' className='p-button'
onClick={redirectToVatsim} onClick={redirectToVatsim}
/> />
</span> </span>
@@ -31,12 +31,16 @@ export const Login: React.FC = () => {
return ( return (
<> <>
<Card <div className='card min-h-screen'>
title='Arrival MANager' <div className='flex flex-wrap align-items-center justify-content-center card-container min-h-screen'>
className='login-card text-center surface-200' <Card
style={{ width: '25rem' }} title='Arrival MANager'
footer={footer}> className='login-card text-center surface-200'
</Card> style={{ width: '25rem' }}
footer={footer}>
</Card>
</div>
</div>
</> </>
); );
}; };