0

I have a problem using modal. The size of the modal is too large, namely it is way too high. I need to make the modal size smaller. What do I have to do to achieve it?enter image description here

Nghia Tran
  • 13
  • 3

1 Answers1

0

Set height property to auto to disable fixed height and optionally set max-height to whatever that suits you.

{
  height: auto;
  max-height: 300px;
}
Heramaas
  • 16
  • 1