css code can be added to add scroll bar:
body {
overflow-y: hidden; /* Hide vertical scrollbar */
overflow-x: hidden; /* Hide horizontal scrollbar */
}
we can also specify the height of the dialog box for which the scroll bar is added:
body { overflow-y: scroll; display: block; height:150px;}