Compare commits

..

No commits in common. "7930f961710641f022ef0cd3ad3277ffd4eab7eb" and "8bfbdd9f262ef8d34d25c2fe5d5901315fa8f7ea" have entirely different histories.

View file

@ -35,8 +35,7 @@ body {
#app { #app {
height: 100%; height: 100%;
display: flex; display: grid;
flex-direction: column;
} }
::-webkit-scrollbar { ::-webkit-scrollbar {
@ -60,19 +59,18 @@ body {
} }
#tabs { #tabs {
flex: 1; grid-row: 3;
z-index: 1; z-index: 1;
display: grid; display: grid;
overflow: hidden; overflow: hidden;
.page { .page {
//visibility: hidden; visibility: hidden;
display: none;
overflow-y: scroll; overflow-y: scroll;
grid-row: 1; grid-row: 1;
grid-column: 1; grid-column: 1;
&.active { &.active {
//visibility: visible; visibility: visible;
display: inherit; }
&.waiting { &.waiting {
user-select: none; user-select: none;
position: fixed; position: fixed;
@ -96,7 +94,6 @@ body {
} }
} }
} }
}
h1.pageheader { h1.pageheader {
margin-top: 0; margin-top: 0;
@ -134,6 +131,7 @@ $tab-active: lighten($nanotrasen, 10%);
#section-list { #section-list {
z-index: 2; z-index: 2;
grid-row: 1;
border-bottom: 2px solid $section-active; border-bottom: 2px solid $section-active;
display: flex; display: flex;
.section { .section {
@ -162,6 +160,7 @@ $tab-active: lighten($nanotrasen, 10%);
#tab-list { #tab-list {
z-index: 2; z-index: 2;
grid-row: 2;
display: flex; display: flex;
background-color: $section-active; background-color: $section-active;
border-bottom: 4px solid $tab-active; border-bottom: 4px solid $tab-active;