How can I set modals height to be equal to its content

Hi
if CSS can deliver what you need, you can target the modal via the below sample code:

.my-custom-modal-css .modal-wrapper {
   height: 20%;
   top: 80%;
   position: absolute; 
   display: block;  
}

Regards,

Tom