Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export function SidebarProfile(): JSX.Element {
onClick={openModal}
>
<HeroIcon iconName='ArrowRightOnRectangleIcon' />
Log out @{username || 'user'}
Log out
</Button>
)}
</Menu.Item>
Expand Down
4 changes: 2 additions & 2 deletions platforms/blabsy/src/components/user/user-avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function UserAvatar({
const image = (
<NextImage
useSkeleton
imgClassName='rounded-full'
imgClassName='rounded-full aspect-square'
width={pictureSize}
height={pictureSize}
src={src}
Expand All @@ -35,7 +35,7 @@ export function UserAvatar({
return (
<div
className={cn(
'blur-picture flex self-start pointer-events-none',
'blur-picture flex self-start pointer-events-none aspect-square',
className
)}
>
Expand Down
2 changes: 1 addition & 1 deletion platforms/blabsy/src/components/user/user-tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function UserTooltip({
>
{children}
<div
className='menu-container invisible absolute left-1/2 w-72 -translate-x-1/2 rounded-2xl
className='menu-container invisible absolute left-1/2 w-72 rounded-2xl
opacity-0 [transition:visibility_0ms_ease_400ms,opacity_200ms_ease_200ms] group-hover:visible
group-hover:opacity-100 group-hover:delay-500'
>
Expand Down