🎨 Update theme (#666)

This commit is contained in:
Alejandra
2024-03-11 16:50:46 +01:00
committed by GitHub
parent 4ef4b27b10
commit 7cf9577ebb
15 changed files with 53 additions and 53 deletions

View File

@@ -73,7 +73,7 @@ function Admin() {
<Tbody>
{users.data.map((user) => (
<Tr key={user.id}>
<Td color={!user.full_name ? 'gray.600' : 'inherit'}>
<Td color={!user.full_name ? 'gray.400' : 'inherit'}>
{user.full_name || 'N/A'}
{currentUser?.id === user.id && (
<Badge ml="1" colorScheme="teal">

View File

@@ -70,7 +70,7 @@ function Items() {
<Tr key={item.id}>
<Td>{item.id}</Td>
<Td>{item.title}</Td>
<Td color={!item.description ? 'gray.600' : 'inherit'}>
<Td color={!item.description ? 'gray.400' : 'inherit'}>
{item.description || 'N/A'}
</Td>
<Td>

View File

@@ -93,7 +93,7 @@ function Login() {
},
})}
placeholder="Email"
type="text"
type="email"
/>
{errors.username && (
<FormErrorMessage>{errors.username.message}</FormErrorMessage>