Fix alignment in modal

This commit is contained in:
ekzyis 2024-03-28 17:10:05 +01:00
parent 690d2849e9
commit dcb7205278
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ export default function useModal () {
dialogClassName={className} dialogClassName={className}
contentClassName={className} contentClassName={className}
> >
<div className='d-flex flex-row align-self-end'> <div className='d-flex flex-row'>
{modalOptions?.overflow && {modalOptions?.overflow &&
<div className={'modal-btn modal-overflow ' + className}> <div className={'modal-btn modal-overflow ' + className}>
<ActionDropdown> <ActionDropdown>

View File

@ -485,9 +485,9 @@ div[contenteditable]:disabled,
.modal-content { .modal-content {
background-color: var(--theme-inputBg); background-color: var(--theme-inputBg);
border-color: var(--theme-borderColor); border-color: var(--theme-borderColor);
align-items: center;
} }
.modal-body { .modal-body {
align-self: center;
width: fit-content; width: fit-content;
} }