Skip to content

Commit

Permalink
Merge pull request #3241 from getAlby/fix-avatar-position
Browse files Browse the repository at this point in the history
fix: avatar position from qr code
  • Loading branch information
pavanjoshi914 authored Sep 8, 2024
2 parents 7206066 + 9b3eb8b commit 0339081
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/Avatar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Avatar = (props: Props) => {
const AvatarImage = (props: Props) => {
return (
<div
className={classNames("translate-z-0 shrink-0", props.className ?? "")}
className={classNames("shrink-0", props.className ?? "")}
style={{
width: `${props.size}px`,
height: `${props.size}px`,
Expand Down Expand Up @@ -52,7 +52,7 @@ const AvatarSVG = (props: Omit<Props, "url">) => {
return (
<svg
className={classNames(
"rounded-full overflow-hidden translate-z-0 shrink-0",
"rounded-full overflow-hidden shrink-0",
props.className ?? ""
)}
ref={svgRef}
Expand Down

0 comments on commit 0339081

Please sign in to comment.