@pega/dx-component-builder-sdk
Version:
Utility for building custom UI components
25 lines (23 loc) • 464 B
CSS
.cancel-alert-background {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
background-color: rgba(100, 100, 100, 0.4);
position: fixed;
z-index: 9999;
top: 0px;
left: 0px;
}
.cancel-alert-top {
display: table;
margin: auto;
min-width: 550px;
background-color: white;
border: 1px solid black;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px 3px #777;
}