Small changes to fix styles that were broken by refactoring

This commit is contained in:
Christian 2021-05-06 14:51:24 +02:00
parent c4a54ee2e4
commit 95985eb92a
2 changed files with 418 additions and 394 deletions

View File

@ -107,6 +107,26 @@
grid-column: 1 / span 3; grid-column: 1 / span 3;
} }
.pc .pc-main {
width: 100%;
grid-column: 1 / span 3;
}
.pc .pc-main > div {
/*height: 400px;
height: 99vh;*/
width: 100%;
box-sizing: border-box;
padding: 1em;
display: grid;
grid-template-columns: auto auto auto;
/* grid-template-columns: max-content auto max-content; */
gap: 9px;
}
.pc .section { .pc .section {
min-height: 25em; min-height: 25em;
max-height: calc(80vh - 8em); max-height: calc(80vh - 8em);
@ -504,7 +524,11 @@ th.address {
-o-transform: var(--transformation); -o-transform: var(--transformation);
} }
.pc .arrow.up.arrow2 { .pc .arrow.up ~ .arrow.up {
left: 25%;
}
.pc .arrow.up ~ .arrow.up ~ .arrow.up {
left: 50%; left: 50%;
} }

View File

@ -66,7 +66,7 @@ function loadStorage() {
// Load last state of pc // Load last state of pc
loadStorage(); //loadStorage();
// EVENT LISTENERS // EVENT LISTENERS
pc_ram_scroller.addEventListener("scroll", shrinkTableHead); pc_ram_scroller.addEventListener("scroll", shrinkTableHead);