summaryrefslogtreecommitdiff
path: root/client/src/components/Registry.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-08-22 18:44:34 -0700
committerMichael Hunteman <michael@huntm.net>2024-08-22 18:44:34 -0700
commit6aee47e76d7e25206b3778aeebcc341d7b705035 (patch)
treed6704ea58553fa0118504c0e8d4861f672d002e0 /client/src/components/Registry.tsx
parent42aa6dc74a736f8c96bd1b1bdf37ad3ff905f08c (diff)
Box shadow papers on hover
Diffstat (limited to 'client/src/components/Registry.tsx')
-rw-r--r--client/src/components/Registry.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/client/src/components/Registry.tsx b/client/src/components/Registry.tsx
index c6e61b1..f821212 100644
--- a/client/src/components/Registry.tsx
+++ b/client/src/components/Registry.tsx
@@ -16,6 +16,7 @@ function Registry() {
<Paper
elevation={3}
sx={{
+ '&:hover': { boxShadow: 8 },
width: { xs: '90%', md: 400 },
display: 'flex',
justifyContent: 'center',
@@ -30,8 +31,8 @@ function Registry() {
Thank you for your generous gifts! We look forward to seeing you at
the wedding.
</p>
- <Button variant="contained" endIcon={<LaunchIcon />}>
- Go to Registry
+ <Button variant="contained" startIcon={<LaunchIcon />}>
+ Registry
</Button>
</Paper>
</div>