fit missing signup button spacing

Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com>
This commit is contained in:
CypherCosmo 2024-12-28 13:47:57 -03:00 committed by GitHub
parent c89220dbde
commit 43129f7045
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -227,7 +227,7 @@ export function SignUpButton ({ className = 'py-0', width }) {
return (
<Button
className={classNames('align-items-center ps-2 py-1 pe-3', className)}
className={classNames('align-items-center ps-2 pe-3', className)}
style={{ borderWidth: '2px', width: width || '150px' }}
id='signup'
onClick={() => handleLogin('/signup')}
@ -359,7 +359,7 @@ export function LoginButtons ({ handleClose }) {
<LoginButton />
</Dropdown.Item>
<Dropdown.Item className='py-1'>
<SignUpButton />
<SignUpButton className='py-1'/>
</Dropdown.Item>
<Dropdown.Item className='py-1'>
<SwitchAccountButton handleClose={handleClose} />