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:
Felipe Bueno 2024-04-04 18:31:53 -03:00 committed by GitHub
parent c2d207fbbb
commit a0e705b1c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 4 deletions

3
.gitignore vendored
View File

@ -32,6 +32,9 @@ envbak
.env*
!.env.sample
# local settings
.vscode/settings.json
# vercel
.vercel

View File

@ -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')}
>