The Dialog component seems to ignore the minWidth, unless I am misunderstanding what the attribute does. When I shrink the width of my screen the dialog does not resize to minWidth and my content goes off screen. I have attached a GIF to demonstrate. This behavior is also present on the examples from the documentation so it is not specific to my setup.
Here is my code, as you can see I have the minWidth set to 400px, but the content window does not start resizing until around 100px. How can I force the dialog to resize appropriately so the content does not go off screen?
<kendo-dialog title="TERMS OF USE and PRIVACY POLICY" *ngIf="agreeOpen" (close)="closeAgree()" [minWidth]="400" [width]="500"> <p class="text-left" [innerHtml]="termsConfig.content"></p> <kendo-dialog-actions> <button kendoButton (click)="closeAgree()" primary="true">Close</button> </kendo-dialog-actions></kendo-dialog>