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*
|
||||||
!.env.sample
|
!.env.sample
|
||||||
|
|
||||||
|
# local settings
|
||||||
|
.vscode/settings.json
|
||||||
|
|
||||||
# vercel
|
# vercel
|
||||||
.vercel
|
.vercel
|
||||||
|
|
||||||
|
|
|
@ -236,8 +236,8 @@ export function SignUpButton ({ className = 'py-0' }) {
|
||||||
return (
|
return (
|
||||||
<Button
|
<Button
|
||||||
className={classNames('align-items-center ps-2 pe-3', className)}
|
className={classNames('align-items-center ps-2 pe-3', className)}
|
||||||
style={{ borderWidth: '2px' }}
|
style={{ borderWidth: '2px', width: '112px' }}
|
||||||
id='login'
|
id='signup'
|
||||||
onClick={() => handleLogin('/signup')}
|
onClick={() => handleLogin('/signup')}
|
||||||
>
|
>
|
||||||
<LightningIcon
|
<LightningIcon
|
||||||
|
@ -259,8 +259,8 @@ export default function LoginButton ({ className }) {
|
||||||
return (
|
return (
|
||||||
<Button
|
<Button
|
||||||
className='align-items-center px-3 py-1 mb-2'
|
className='align-items-center px-3 py-1 mb-2'
|
||||||
id='signup'
|
id='login'
|
||||||
style={{ borderWidth: '2px' }}
|
style={{ borderWidth: '2px', width: '112px' }}
|
||||||
variant='outline-grey-darkmode'
|
variant='outline-grey-darkmode'
|
||||||
onClick={() => handleLogin('/login')}
|
onClick={() => handleLogin('/login')}
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue