Skip to content

Commit

Permalink
made some changes based on feecback
Browse files Browse the repository at this point in the history
  • Loading branch information
SachiGoto committed Feb 8, 2024
1 parent 9b4772b commit 653f651
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
3 changes: 0 additions & 3 deletions app/(auth)/signin/components/signin-footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
'use client'

import { CardFooter, VStack, Text } from '@chakra-ui/react'

import { Link } from '@/components/link'

export const SignInFooter = () => {
Expand Down
3 changes: 1 addition & 2 deletions app/(auth)/signin/components/signin-form.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
'use client'
import { useState } from 'react'
import { useForm } from 'react-hook-form'
import {
Expand Down Expand Up @@ -68,7 +67,7 @@ export const SignInForm = () => {
mt={{ base: '38px', md: '42px' }}
gap={{ base: '30px', md: '40px' }}
p="0%"
maxW="500px"
maxW="380px"
>
<VStack gap="24px">
<FormControl isInvalid={!!errors.email}>
Expand Down
2 changes: 1 addition & 1 deletion app/(auth)/signin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function SignIn() {
}}
bg="white"
boxShadow={{ base: '0', md: '0 4px 16px rgba(0, 0, 0, 0.1)' }}
maxW={{ base: '100%', lg: 'container.sm' }}
maxW={{ base: '100%', md: '542px' }}
py="40px"
px={{ base: '16px', md: '80px' }}
>
Expand Down

0 comments on commit 653f651

Please sign in to comment.