diff options
author | Michael Hunteman <michael@huntm.net> | 2024-09-19 16:45:46 -0700 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2024-09-19 16:45:46 -0700 |
commit | 3aad1960e4ee9bce1155b4154c596daf09ee0ae5 (patch) | |
tree | 0b20a0dbfa8aaace36db73e07f7f847ef4badfaf /client | |
parent | 33b26d0f5e4e88c2f45b968608bd6893c9187173 (diff) |
Update box shadow on hover
Diffstat (limited to 'client')
-rw-r--r-- | client/src/components/AdminLogin.tsx | 2 | ||||
-rw-r--r-- | client/src/components/GuestLogin.tsx | 2 | ||||
-rw-r--r-- | client/src/components/Registry.tsx | 2 | ||||
-rw-r--r-- | client/src/components/RsvpForm.tsx | 6 | ||||
-rw-r--r-- | client/src/components/Schedule.tsx | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/client/src/components/AdminLogin.tsx b/client/src/components/AdminLogin.tsx index 36b4629..1881b6b 100644 --- a/client/src/components/AdminLogin.tsx +++ b/client/src/components/AdminLogin.tsx @@ -49,7 +49,7 @@ function GuestLogin() { <Paper elevation={3} sx={{ - '&:hover': { boxShadow: 8 }, + '&:hover': { boxShadow: 5 }, width: { xs: '90%', md: 400 }, display: 'flex', flexDirection: 'column', diff --git a/client/src/components/GuestLogin.tsx b/client/src/components/GuestLogin.tsx index 0e5dcb6..dca157a 100644 --- a/client/src/components/GuestLogin.tsx +++ b/client/src/components/GuestLogin.tsx @@ -49,7 +49,7 @@ function GuestLogin() { <Paper elevation={3} sx={{ - '&:hover': { boxShadow: 8 }, + '&:hover': { boxShadow: 5 }, width: { xs: '90%', md: 400 }, display: 'flex', flexDirection: 'column', diff --git a/client/src/components/Registry.tsx b/client/src/components/Registry.tsx index 789fd14..8af4f4c 100644 --- a/client/src/components/Registry.tsx +++ b/client/src/components/Registry.tsx @@ -16,7 +16,7 @@ function Registry() { <Paper elevation={3} sx={{ - '&:hover': { boxShadow: 8 }, + '&:hover': { boxShadow: 5 }, width: { xs: '90%', md: 400 }, display: 'flex', justifyContent: 'center', diff --git a/client/src/components/RsvpForm.tsx b/client/src/components/RsvpForm.tsx index 7b2892f..af2dcb1 100644 --- a/client/src/components/RsvpForm.tsx +++ b/client/src/components/RsvpForm.tsx @@ -117,7 +117,7 @@ function RsvpForm() { <Paper elevation={3} sx={{ - '&:hover': { boxShadow: 8 }, + '&:hover': { boxShadow: 5 }, width: { xs: '90%', md: 600 }, display: 'flex', justifyContent: 'center', @@ -131,8 +131,8 @@ function RsvpForm() { <Grid item xs={12}> <p> Please RSVP for the wedding by March 10, 2025. The ceremony will - commence at 2 PM on April 26 in Divine Shepherd. The reception - will follow at 5 PM in A Venue on the Ridge. + commence at 4:30 pm on April 26 in Divine Shepherd. The reception + will follow at 6 pm in A Venue on the Ridge. </p> </Grid> <Grid item xs={12}> diff --git a/client/src/components/Schedule.tsx b/client/src/components/Schedule.tsx index 3620c4e..a901060 100644 --- a/client/src/components/Schedule.tsx +++ b/client/src/components/Schedule.tsx @@ -35,7 +35,7 @@ function Schedule() { <hr style={{ width: '100%' }} /> <div style={{ display: 'flex', alignItems: 'center' }}> <div style={{ width: '35%' }}> - <p>2:00 PM</p> + <p>4:30 pm</p> </div> <div style={{ width: '65%' }}> <Typography variant="h6">Ceremony</Typography> @@ -54,7 +54,7 @@ function Schedule() { <hr style={{ width: '100%' }} /> <div style={{ display: 'flex', alignItems: 'center' }}> <div style={{ width: '35%' }}> - <p>5:00 PM</p> + <p>6:00 pm</p> </div> <div style={{ width: '65%' }}> <Typography variant="h6">Reception</Typography> |