chore: modal animations
This commit is contained in:
@@ -165,10 +165,7 @@ const NoteConflictResolutionModal = ({
|
||||
return (
|
||||
<Modal
|
||||
title="Resolve conflicts"
|
||||
className={{
|
||||
content: 'md:h-full md:w-[70vw]',
|
||||
description: 'flex flex-col overflow-x-hidden md:flex-row',
|
||||
}}
|
||||
className="flex flex-col overflow-x-hidden md:flex-row"
|
||||
actions={actions}
|
||||
close={close}
|
||||
customFooter={
|
||||
|
||||
@@ -1031,7 +1031,11 @@ class NoteView extends AbstractComponent<NoteViewProps, State> {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ModalOverlay isOpen={this.state.showConflictResolutionModal} close={this.toggleConflictResolutionModal}>
|
||||
<ModalOverlay
|
||||
isOpen={this.state.showConflictResolutionModal}
|
||||
close={this.toggleConflictResolutionModal}
|
||||
className="md:h-full md:w-[70vw]"
|
||||
>
|
||||
<NoteConflictResolutionModal
|
||||
currentNote={this.note}
|
||||
conflictedNotes={this.state.conflictedNotes}
|
||||
|
||||
Reference in New Issue
Block a user