Just some minor fixes (#1012)
* Add .vscode/settings.json to .gitignore to allow local vscode settings without making the work tree dirty * Swap (fix) Login & SignUp button ids + Make them both 112px wide
This commit is contained in:
parent
c2d207fbbb
commit
a0e705b1c0
|
@ -32,6 +32,9 @@ envbak
|
|||
.env*
|
||||
!.env.sample
|
||||
|
||||
# local settings
|
||||
.vscode/settings.json
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
|
||||
|
|
|
@ -236,8 +236,8 @@ export function SignUpButton ({ className = 'py-0' }) {
|
|||
return (
|
||||
<Button
|
||||
className={classNames('align-items-center ps-2 pe-3', className)}
|
||||
style={{ borderWidth: '2px' }}
|
||||
id='login'
|
||||
style={{ borderWidth: '2px', width: '112px' }}
|
||||
id='signup'
|
||||
onClick={() => handleLogin('/signup')}
|
||||
>
|
||||
<LightningIcon
|
||||
|
@ -259,8 +259,8 @@ export default function LoginButton ({ className }) {
|
|||
return (
|
||||
<Button
|
||||
className='align-items-center px-3 py-1 mb-2'
|
||||
id='signup'
|
||||
style={{ borderWidth: '2px' }}
|
||||
id='login'
|
||||
style={{ borderWidth: '2px', width: '112px' }}
|
||||
variant='outline-grey-darkmode'
|
||||
onClick={() => handleLogin('/login')}
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue