save before move tabs outside from header

This commit is contained in:
isUnknown 2024-03-10 12:03:31 +01:00
parent f9397935bd
commit 94d404288f
13 changed files with 116 additions and 64 deletions

View file

@ -25,9 +25,18 @@ button.toggle.right.open::before {
content: "-";
}
.active-tab {
margin-top: calc(var(--unit--vertical) * 0.5);
overflow: auto;
max-height: calc(100vh - 7.5 * var(--unit--vertical));
margin-bottom: calc(2 * var(--unit--vertical));
#tabs {
position: relative;
}
.active-tab {
position: absolute;
overflow: auto;
margin-top: calc(var(--unit--vertical) * 0.5);
height: 0px;
transition: height 0.5s ease-in-out;
}
.page-cover.open .active-tab {
height: calc(100vh - 7.5 * var(--unit--vertical));
}