shards-dashboard
shards-dashboard copied to clipboard
Unable to scroll in large modal
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;
}