Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/avatar component #129

Merged
merged 16 commits into from
Sep 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: add justify content prop
  • Loading branch information
Twonarly1 committed Sep 27, 2023
commit 2cbec0fe5d1183aa6ea82b554381db32883087ef
7 changes: 6 additions & 1 deletion src/components/client/core/Avatar/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ const Avatar = ({
return (
<PrimitiveAvatar className={classNames.root} {...rest}>
<AvatarFallback className={classNames.fallback}>
<panda.div height="inherit" display="flex" alignItems="center">
<panda.div
height="inherit"
justifyContent="center"
display="flex"
alignItems="center"
>
{fallback}
</panda.div>
</AvatarFallback>
Expand Down