Minor graphic fixes on unit markers. Readded unit symbols instead of milsymbol

This commit is contained in:
Pax1601
2023-02-19 17:25:54 +01:00
parent 0308f7c6a3
commit 63c2cc058d
117 changed files with 154 additions and 140 deletions

View File

@@ -28,7 +28,6 @@ export class Dropdown {
this.#content.style.left = this.#container.offsetLeft + "px";
this.#content.style.top = this.#container.offsetTop + this.#container.offsetHeight + "px";
console.log(this.#container);
document.body.appendChild(this.#content);
var height = 2;

View File

@@ -62,7 +62,6 @@ export class SelectionScroll {
else
this.#container.style.left = window.innerWidth - this.#container.offsetWidth + "px";
console.log(y - 20 + this.#container.offsetHeight)
if (y - 20 + this.#container.offsetHeight < window.innerHeight)
this.#container.style.top = y - 20 + "px";
else