bug fixes

This commit is contained in:
Daniel
2023-05-28 20:52:01 +03:30
parent 287f7fa870
commit fcbecb5bc5
4 changed files with 156 additions and 136 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export default function ProfilePhoto({ src, className }: Props) {
className={`h-10 w-10 shadow rounded-full border-[3px] border-sky-100 ${className}`}
>
<div
className={`text-white bg-sky-500 h-10 w-10 shadow rounded-full border-[3px] border-sky-100 flex items-center justify-center ${className}`}
className={`bg-sky-500 text-white h-10 w-10 shadow rounded-full border-[3px] border-sky-100 flex items-center justify-center ${className}`}
>
<FontAwesomeIcon icon={faUser} className="w-5 h-5" />
</div>