💄 Add a real loading screen

This commit is contained in:
Philipp Stracker 2024-12-09 19:24:34 +01:00
parent 70e2015e1f
commit 36de426260
No known key found for this signature in database
4 changed files with 54 additions and 9 deletions

View file

@ -0,0 +1,22 @@
/**
* Global app-level styles
*/
.ppcp-r-app.loading {
height: 400px;
width: 400px;
position: absolute;
left: 50%;
transform: translate(-50%, 0);
text-align: center;
.ppcp-r-spinner-overlay {
display: flex;
flex-direction: column;
justify-content: center;
}
.ppcp-r-spinner-overlay__message {
transform: translate(0, 32px)
}
}