styling improvements

This commit is contained in:
2026-01-28 19:08:13 -06:00
parent d638afcdb2
commit a77fbc47e3

View File

@@ -452,11 +452,13 @@ const AdminValidations = () => {
{paginatedUsers.map((user) => ( {paginatedUsers.map((user) => (
<TableRow key={user.id}> <TableRow key={user.id}>
<TableCell className=" "> <TableCell className=" ">
<div className='font-bold'> <div className='font-semibold'>
{user.first_name} {user.last_name} {user.first_name} {user.last_name}
</div> </div>
<div className='text-brand-purple'>
{user.email} {user.email}
</div>
</TableCell> </TableCell>
<TableCell>{formatPhoneNumber(user.phone)}</TableCell> <TableCell>{formatPhoneNumber(user.phone)}</TableCell>
@@ -473,7 +475,7 @@ const AdminValidations = () => {
{user.referred_by_member_name || '-'} {user.referred_by_member_name || '-'}
</TableCell> </TableCell>
<TableCell> <TableCell>
<div className='flex justify-between'> <div className='flex gap-2 justify-between'>
<Select <Select
value="" value=""
@@ -525,7 +527,7 @@ const AdminValidations = () => {
disabled={actionLoading === user.id} disabled={actionLoading === user.id}
size="sm" size="sm"
variant="outline" variant="outline"
className="border-2 mr-2 border-primary text-primary hover:bg-red-50 dark:hover:bg-red-500/10" className="border-2 border-primary text-primary hover:bg-red-50 dark:hover:bg-red-500/10"
> >
<FileText className="size-4" /> <FileText className="size-4" />
</Button> </Button>