EmbeddedStatus: improve size of SiteLogo and background color

This commit is contained in:
Alex Gleason 2022-08-22 12:26:01 -05:00
parent 2e6b826c46
commit f1248018e6
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -46,7 +46,7 @@ const EmbeddedStatus: React.FC<IEmbeddedStatus> = ({ params }) => {
const logo = (
<div className='flex align-middle justify-center ml-4'>
<SiteLogo className='h-10 max-w-[128px]' />
<SiteLogo className='max-h-[20px] max-w-[112px]' />
</div>
);
@ -62,7 +62,7 @@ const EmbeddedStatus: React.FC<IEmbeddedStatus> = ({ params }) => {
return (
<a
className='bg-white dark:bg-gray-800'
className='block bg-white dark:bg-primary-900'
href={status?.url || '#'}
onClick={e => e.stopPropagation()}
target='_blank'