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?
Asked
Active
Viewed 37 times
0

Nghia Tran
- 13
- 3
1 Answers
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