22 lines
355 B
SCSS
22 lines
355 B
SCSS
.wpjtoolbar-error {
|
|
background: rgba(0, 0, 0, .7);
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 20px;
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 9999999;
|
|
|
|
p {
|
|
margin: 0;
|
|
max-width: 500px;
|
|
padding: 30px;
|
|
text-align: center;
|
|
}
|
|
}
|