Moves panel header into the panel component

This commit is contained in:
Josh Perez
2023-07-10 18:44:32 -04:00
committed by GitHub
parent 0b885d5feb
commit 7d0f94c654
8 changed files with 158 additions and 87 deletions
+16 -2
View File
@@ -9,10 +9,21 @@
&__pane {
display: flex;
flex-direction: column;
height: 100%;
overflow: initial;
height: calc(100% - #{$header-height} - var(--title-bar-drag-area-height));
inset-inline-start: 0;
overflow-y: overlay;
position: absolute;
top: calc(#{$header-height} + var(--title-bar-drag-area-height));
width: 100%;
z-index: $z-index-base;
@include light-theme() {
background-color: $color-white;
}
@include dark-theme() {
background-color: $color-gray-95;
}
}
&__timeline {
@@ -44,4 +55,7 @@
margin-inline: 16px;
}
}
&__header {
}
}