pretty-modal
All checks were successful
Deploy on push / deploy (push) Successful in 6s

This commit is contained in:
Untone 2025-06-28 16:39:16 +03:00
parent d69310567c
commit 81926e4738

View File

@ -429,13 +429,14 @@ tr:hover {
flex-direction: column; flex-direction: column;
box-shadow: var(--shadow-lg); box-shadow: var(--shadow-lg);
animation: modal-slide-up 0.3s ease-out; animation: modal-slide-up 0.3s ease-out;
padding: 32px 32px 24px 32px;
} }
.modal-header { .modal-header {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding: var(--spacing-4); padding: 0 0 20px 0;
border-bottom: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
} }
@ -472,7 +473,7 @@ tr:hover {
} }
.modal-body { .modal-body {
padding: var(--spacing-4); padding: 0 0 24px 0;
overflow-y: auto; overflow-y: auto;
flex: 1; flex: 1;
} }
@ -1472,3 +1473,11 @@ button,
border-radius: 0 !important; border-radius: 0 !important;
box-shadow: none !important; box-shadow: none !important;
} }
.modal-actions {
display: flex;
gap: 16px;
justify-content: flex-end;
padding: 0;
margin-top: 12px;
}