chore: add classnames for easy logo/server name customizations via CSS. (#1828)

Update MemoDetail.tsx
pull/1832/head
David Angel 2 years ago committed by GitHub
parent e6c9f2a00e
commit 781b1f7b3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -48,9 +48,9 @@ const MemoDetail = () => {
<section className="relative top-0 w-full h-full overflow-y-auto overflow-x-hidden bg-zinc-100 dark:bg-zinc-800">
<div className="relative w-full min-h-full mx-auto flex flex-col justify-start items-center pb-6">
<div className="max-w-2xl w-full flex flex-row justify-center items-center px-4 py-2 mt-2 bg-zinc-100 dark:bg-zinc-800">
<div className="flex flex-row justify-start items-center">
<img className="h-10 w-auto rounded-lg mr-2" src={customizedProfile.logoUrl} alt="" />
<p className="text-4xl tracking-wide text-black dark:text-white">{customizedProfile.name}</p>
<div className="detail-header flex flex-row justify-start items-center">
<img className="detail-logo h-10 w-auto rounded-lg mr-2" src={customizedProfile.logoUrl} alt="" />
<p className="detail-name text-4xl tracking-wide text-black dark:text-white">{customizedProfile.name}</p>
</div>
</div>
{!loadingState.isLoading && (

Loading…
Cancel
Save