B: Fix panel animation
Some checks are pending
Frontend CI / build (22.x) (push) Waiting to run
Frontend CI / notify-failure (push) Blocked by required conditions

This commit is contained in:
Ivan 2025-07-01 21:56:21 +03:00
parent 1caf02409f
commit 6b69544b8b
2 changed files with 6 additions and 2 deletions

View File

@ -62,7 +62,11 @@ export function EditorOssCard() {
<EditorLibraryItem schema={schema} isAttachedToOSS={false} />
</div>
<OssStats className='w-80 md:w-56 mt-3 md:mt-8 md:ml-5 mx-auto' stats={schema.stats} isMounted={showOSSStats} />
<OssStats
className='w-80 md:w-56 mt-3 md:mt-8 mx-auto md:ml-5 md:mr-0'
stats={schema.stats}
isMounted={showOSSStats}
/>
</div>
);
}

View File

@ -63,7 +63,7 @@ export function EditorRSFormCard() {
</div>
<RSFormStats
className='w-80 md:w-56 mt-3 md:mt-8 md:ml-5 mx-auto'
className='w-80 md:w-56 mt-3 md:mt-8 mx-auto md:ml-5 md:mr-0'
stats={schema.stats}
isArchive={isArchive}
isMounted={showRSFormStats}