update
This commit is contained in:
@@ -141,6 +141,7 @@ body {
|
||||
box-shadow: var(--shadow);
|
||||
border-radius: 18px;
|
||||
}
|
||||
.module-subnav.card { background: var(--panel); }
|
||||
|
||||
.layout-body {
|
||||
display: grid;
|
||||
@@ -148,6 +149,7 @@ body {
|
||||
gap: 16px;
|
||||
padding: 6px 24px 24px;
|
||||
transition: grid-template-columns 260ms ease;
|
||||
position: relative;
|
||||
}
|
||||
.layout-body.sidebar-open {
|
||||
grid-template-columns: 260px 1fr;
|
||||
@@ -166,6 +168,18 @@ body {
|
||||
pointer-events: none;
|
||||
transition: transform 260ms ease, opacity 260ms ease;
|
||||
}
|
||||
.layout-body.sidebar-collapsed .sidebar {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 240px;
|
||||
max-height: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
.layout-body.sidebar-open .sidebar {
|
||||
transform: translateX(0);
|
||||
opacity: 1;
|
||||
|
||||
Reference in New Issue
Block a user