shards-dashboard icon indicating copy to clipboard operation
shards-dashboard copied to clipboard

Unable to scroll in large modal

Open obed123456 opened this issue 6 years ago • 1 comments

obed123456 avatar Aug 06 '19 20:08 obed123456

This is a style issue coming from bootstrap styles. Try adding this to your css

.modal {
  overflow: auto;
}

or you can just turn on the y axis if your modal is too long.

.modal {
   overflow-y: auto;
}

Jazzepi avatar Jan 29 '20 23:01 Jazzepi