styling improvements
This commit is contained in:
@@ -452,11 +452,13 @@ const AdminValidations = () => {
|
||||
{paginatedUsers.map((user) => (
|
||||
<TableRow key={user.id}>
|
||||
<TableCell className=" ">
|
||||
<div className='font-bold'>
|
||||
<div className='font-semibold'>
|
||||
|
||||
{user.first_name} {user.last_name}
|
||||
</div>
|
||||
<div className='text-brand-purple'>
|
||||
{user.email}
|
||||
</div>
|
||||
|
||||
</TableCell>
|
||||
<TableCell>{formatPhoneNumber(user.phone)}</TableCell>
|
||||
@@ -473,7 +475,7 @@ const AdminValidations = () => {
|
||||
{user.referred_by_member_name || '-'}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className='flex justify-between'>
|
||||
<div className='flex gap-2 justify-between'>
|
||||
|
||||
<Select
|
||||
value=""
|
||||
@@ -525,7 +527,7 @@ const AdminValidations = () => {
|
||||
disabled={actionLoading === user.id}
|
||||
size="sm"
|
||||
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" />
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user