Skip to content

Commit

Permalink
🎨 Adjust color and spacing (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
alejsdev authored Mar 12, 2024
1 parent cc0ea3c commit d360b92
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion frontend/src/components/UserSettings/UserInformation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ const UserInformation: React.FC = () => {
size="md"
/>
) : (
<Text size="md" py={2}>
<Text
size="md"
py={2}
color={!currentUser?.full_name ? 'gray.400' : 'inherit'}
>
{currentUser?.full_name || 'N/A'}
</Text>
)}
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/routes/_layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ function Dashboard() {
<>
<Container maxW="full">
<Box pt={12} m={4}>
<Text fontSize="2xl">
Hi, {currentUser?.full_name || currentUser?.email} 👋🏼
</Text>
<Text>Welcome back, nice to see you again!</Text>
<Text fontSize="2xl">
Hi, {currentUser?.full_name || currentUser?.email} 👋🏼
</Text>
<Text>Welcome back, nice to see you again!</Text>
</Box>
</Container>
</>
Expand Down

0 comments on commit d360b92

Please sign in to comment.