♻️ Make Spinner reusable (not only by loading view)

This commit is contained in:
2024-03-03 23:32:55 +01:00
parent 257b36eae1
commit 46c251ef90
5 changed files with 103 additions and 80 deletions

View File

@@ -1,9 +1,21 @@
@import "../_base.scss"
.root {
background-image: url("./images/background.svg");
background-position: center;
height: 100%;
width: 100%;
z-index: -1;
width: 150%;
height: 150%;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
.content {
background-image: url("./images/background.svg");
background-position: center;
width: 150%;
height: 150%;
}
}