Skip to content

Commit

Permalink
fit missing signup button spacing
Browse files Browse the repository at this point in the history
Co-authored-by: Keyan <[email protected]>
  • Loading branch information
cyphercosmo and huumn authored Dec 28, 2024
1 parent c89220d commit 43129f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/nav/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')}
Expand Down Expand Up @@ -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} />
Expand Down

0 comments on commit 43129f7

Please sign in to comment.