fix: remove .max-w-3xl from embedded status.
Will no longer create white space when the parent it's embedded in is wider than .max-w-3xl (48rem; /* 768px */ ).
This commit is contained in:
parent
2eef835951
commit
733fa675d8
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ const EmbeddedStatus: React.FC<IEmbeddedStatus> = ({ params }) => {
|
|||
onClick={e => e.stopPropagation()}
|
||||
target='_blank'
|
||||
>
|
||||
<div className='pointer-events-none max-w-3xl p-4 sm:p-6'>
|
||||
<div className='pointer-events-none p-4 sm:p-6'>
|
||||
{renderInner()}
|
||||
</div>
|
||||
</a>
|
||||
|
|
Loading…
Reference in a new issue