import scaffoldings

This commit is contained in:
Gani Georgiev
2022-08-05 06:00:38 +03:00
parent 95f9d685dc
commit f459dd8812
25 changed files with 1362 additions and 261 deletions

View File

@@ -94,14 +94,14 @@
}
}
// toast alerts
.toasts-wrapper {
position: fixed;
z-index: 999999;
bottom: 0;
left: 0;
right: 0;
padding: 0 var(--smSpacing);
width: 100%;
width: auto;
display: block;
text-align: center;
pointer-events: none;
@@ -112,4 +112,10 @@
margin: var(--baseSpacing) auto;
@include shadowize();
}
.app-sidebar ~ .app-body & {
left: var(--appSidebarWidth);
}
.app-sidebar ~ .app-body .page-sidebar ~ & {
left: calc(var(--appSidebarWidth) + var(--pageSidebarWidth));
}
}