B: Fix panel animation

This commit is contained in:
Ivan 2025-07-01 21:55:42 +03:00
parent 44c21dd7fd
commit cb0f8783e5
2 changed files with 6 additions and 2 deletions

View File

@ -62,7 +62,11 @@ export function EditorOssCard() {
<EditorLibraryItem schema={schema} isAttachedToOSS={false} /> <EditorLibraryItem schema={schema} isAttachedToOSS={false} />
</div> </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> </div>
); );
} }

View File

@ -63,7 +63,7 @@ export function EditorRSFormCard() {
</div> </div>
<RSFormStats <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} stats={schema.stats}
isArchive={isArchive} isArchive={isArchive}
isMounted={showRSFormStats} isMounted={showRSFormStats}