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}
contentClassName={className}
>
<div className='d-flex flex-row align-self-end'>
<div className='d-flex flex-row'>
{modalOptions?.overflow &&
<div className={'modal-btn modal-overflow ' + className}>
<ActionDropdown>

View File

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