I have a modal window that is generic and is used to do CRUD operations. I have a grouping of buttons that need to be left aligned and should always be pasted to the bottom of the modal, respecting the borders as the image. At the moment, they are going up and down according to the amount of fields that the window has ... I would like the footer and they to stay fixed at the bottom.
Thank you all!
.modal-content {
height: 90%;
}
.modal-dialog {
max-width: 70%;
height: 100%;
margin: 0 auto !important;
}
#contentModal {
overflow: auto;
}
#modalGenerica {
overflow: hidden;
}
.modal-body {
}
.modal-content {
/*background-color: #f8f7fc;*/
}
.modal-footer {
}
.modal-header {
background-color: #ecece9;
}