Control spacing, padding, overlay backdrop, and dialog appearance
Control the spacing between buttons and padding around the container using containerCSS
Customize the overlay background using overlayCSS
Style the dialog container using dialogCSS
Combine all styling options for unique designs
AppOverlay.open([{
containerCSS: {
gap: '30px', // Space between buttons
padding: '40px' // Padding around container
},
buttons: [/* ... */]
}]);
AppOverlay.open([{
overlayCSS: {
background: 'rgba(0, 0, 0, 0.95)',
backdropFilter: 'blur(10px)'
},
buttons: [/* ... */]
}]);
AppOverlay.open([{
dialogCSS: {
background: '#1a1a2e',
border: '2px solid #00ff00',
boxShadow: '0 0 30px rgba(0, 255, 0, 0.5)'
},
buttons: [/* ... */]
}]);