Ionic 3 - Change the opacity of a modal background?

Currently, the opacity of the active Ion modal background is 0.4, I would like to change it.

+4
source share
1 answer

You can do this very easily using Sass variablebelow.

variables.scss

$modal-inset-box-shadow-color: rgba(0, 0, 0, .4)

Note: Change the 4th parameter (i.e. .4) as you wish

Here is a document

enter image description here

+2
source

Source: https://habr.com/ru/post/1686160/


All Articles