I have implemented ngx-simple-modal in which i am opening modal on link click. When modal opens then whole page gets faded with very light black color. I want to make this black color more dark so that my page will get more darker in black and my modal will be more prominent. From where i can change this styling?
I found the solution. I just change .modal class and change background-color: rgba(0, 0, 0, .4) !important; to background-color: rgba(0, 0, 0, .9) !important;
I have implemented
ngx-simple-modal
in which i am opening modal on link click. Whenmodal
opens then whole page getsfaded
with verylight black
color. I want to make this black color more dark so that my page will get more darker in black and my modal will be more prominent. From where i can change thisstyling
?