Compare commits
2 commits
8bfbdd9f26
...
7930f96171
Author | SHA1 | Date | |
---|---|---|---|
7930f96171 | |||
9a6fc62179 |
1 changed files with 26 additions and 25 deletions
|
@ -35,7 +35,8 @@ body {
|
||||||
|
|
||||||
#app {
|
#app {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: grid;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
|
@ -59,18 +60,19 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
#tabs {
|
#tabs {
|
||||||
grid-row: 3;
|
flex: 1;
|
||||||
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;
|
||||||
|
@ -94,6 +96,7 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
h1.pageheader {
|
h1.pageheader {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
@ -131,7 +134,6 @@ $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 {
|
||||||
|
@ -160,7 +162,6 @@ $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;
|
||||||
|
|
Reference in a new issue