current state

This commit is contained in:
2023-05-15 18:49:02 +02:00
parent b5314cb552
commit 3b9813a680
23 changed files with 937 additions and 107 deletions

View File

@ -0,0 +1,6 @@
.magicalTriangle[aria-expanded=true] {
transform: rotate(180deg);
transition: transform 0.3s ease;
}
/*# sourceMappingURL=dashboard-mod.css.map */

View File

@ -0,0 +1 @@
{"version":3,"sourceRoot":"","sources":["../../src/sass/dashboard-mod.scss"],"names":[],"mappings":"AAAA;EACC;EACA","file":"dashboard-mod.css"}

View File

@ -105,3 +105,31 @@ body {
color: red;
transition: 1s;
}
/*
* Utilities
*/
.loader-overlay {
border-radius: var(--bs-modal-inner-border-radius);
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.678);
z-index: 9999;
display: none;
}
.loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loaderActive {
display: block !important;
}