Interface ModalBackdropConfig

Source
Expand description

Configuration for modal backdrop.

interface ModalBackdropConfig {
    color?: string;
    enabled?: boolean;
    opacity?: number;
}

Properties§

Source§

color?: string

Color of the backdrop.

default
'black'
Source§

enabled?: boolean

Whether to show backdrop behind the modal.

default
true
Source§

opacity?: number

Opacity of the backdrop (0-1).

default
0.7