chore: fix user avatar style

pull/2214/head
Steven 2 years ago
parent d165ad187c
commit 439d88f06b

@ -8,7 +8,7 @@ interface Props {
const UserAvatar = (props: Props) => { const UserAvatar = (props: Props) => {
const { avatarUrl, className } = props; const { avatarUrl, className } = props;
return ( return (
<div className={classNames(`w-8 h-auto overflow-clip rounded-full`, className)}> <div className={classNames(`w-8 h-8 overflow-clip rounded-full`, className)}>
<img <img
className="w-full h-auto rounded-full min-w-full min-h-full object-cover dark:opacity-80" className="w-full h-auto rounded-full min-w-full min-h-full object-cover dark:opacity-80"
src={avatarUrl || "/logo.webp"} src={avatarUrl || "/logo.webp"}

Loading…
Cancel
Save