commit 6c15a76b646c052530d89c98bcc040a8f818311d parent 2e32f3410bee980c4b2fd7fcb2e685be9689ef19 Author: MTRNord <mtrnord1@gmail.com> Date: Sun, 30 Jan 2022 21:16:31 +0100 Fix size of fallback Diffstat:
| M | pages/profile/[userid].tsx | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pages/profile/[userid].tsx b/pages/profile/[userid].tsx @@ -238,7 +238,7 @@ class Profile extends PureComponent<Props, State> { : (avatar_url ? <img className="block object-cover rounded-md" src={this.context.client.downloadLink(avatar_url)!} height="100" width="100" alt={displayname} title={displayname} /> : - <div className="rounded-md bg-slate-500 flex justify-center items-center"></div> + <div className="rounded-md bg-slate-500 flex justify-center items-center" style={{ height: "100px", width: "100px" }}></div> ) } </div>