@@ -7,7 +7,7 @@ import { useCardContext } from './UserCardContext'
77
88export const UserCardSettings = ( ) => {
99 return (
10- < ul role = "list" className = "space-y-2" >
10+ < ul role = "list" className = "space-y-2 pt-4 sm:pt-0 " >
1111 < SpendingLimit />
1212 < PinSettings />
1313 </ ul >
@@ -23,17 +23,17 @@ const SpendingLimit = () => {
2323 onClick = { ( ) => {
2424 openDialog ( < UserCardSpendingLimitDialog onClose = { closeDialog } /> )
2525 } }
26- className = "block w-full bg-green-light dark:bg-purple-bright rounded-md p-3"
26+ className = "block w-full bg-green-light dark:bg-purple-bright rounded-md p-3 dark:hover:shadow-glow-button group "
2727 >
2828 < div className = "flex min-w-0 gap-x-4" >
2929 < div className = "size-12 grid place-items-center bg-green dark:bg-purple-dark rounded-full" >
3030 < Limit className = "text-white size-6" />
3131 </ div >
3232 < div className = "min-w-0 flex-auto text-left" >
33- < p className = "font-semibold leading-6 text-gray-900" >
33+ < p className = "font-semibold leading-6 text-gray-900 group-hover:underline dark:group-hover:no-underline " >
3434 Spending Limit
3535 </ p >
36- < p className = "mt-1 text-grey-dark dark:text-white/70 truncate text-xs leading-5 text-gray-500" >
36+ < p className = "mt-1 text-grey-dark dark:text-white/70 truncate text-xs leading-5 text-gray-500 group-hover:underline dark:group-hover:no-underline " >
3737 Monthly & Daily Limit
3838 </ p >
3939 </ div >
@@ -53,17 +53,17 @@ const PinSettings = () => {
5353 onClick = { ( ) => {
5454 openDialog ( < UserCardPINDialog card = { card } onClose = { closeDialog } /> )
5555 } }
56- className = "block w-full bg-green-light dark:bg-purple-bright rounded-md p-3"
56+ className = "block w-full bg-green-light dark:bg-purple-bright rounded-md p-3 dark:hover:shadow-glow-button group "
5757 >
5858 < div className = "flex min-w-0 gap-x-4" >
5959 < div className = "size-12 grid place-items-center bg-green dark:bg-purple-dark rounded-full" >
6060 < CardKey className = "text-white size-6" />
6161 </ div >
6262 < div className = "min-w-0 flex-auto text-left" >
63- < p className = "font-semibold leading-6 text-gray-900" >
63+ < p className = "font-semibold leading-6 text-gray-900 group-hover:underline dark:group-hover:no-underline " >
6464 View Card PIN
6565 </ p >
66- < p className = "mt-1 text-grey-dark dark:text-white/70 truncate text-xs leading-5 text-gray-500" >
66+ < p className = "mt-1 text-grey-dark dark:text-white/70 truncate text-xs leading-5 text-gray-500 group-hover:underline dark:group-hover:no-underline " >
6767 Security
6868 </ p >
6969 </ div >
0 commit comments