mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
fix: somehwat fix overlap with vanilla seqta averages
This commit is contained in:
@@ -114,11 +114,16 @@ function createWeightLabel(
|
|||||||
: "N/A";
|
: "N/A";
|
||||||
}
|
}
|
||||||
|
|
||||||
statsContainer.style.position = "relative";
|
// Stack weight under Max/native stats — absolute right:0 overlapped the max column (#414).
|
||||||
weightLabel.style.position = "absolute";
|
statsContainer.style.display = "flex";
|
||||||
weightLabel.style.right = "0";
|
statsContainer.style.flexDirection = "column";
|
||||||
weightLabel.style.top = "50%";
|
statsContainer.style.alignItems = "flex-end";
|
||||||
weightLabel.style.transform = "translateY(-50%)";
|
statsContainer.style.gap = "2px";
|
||||||
|
statsContainer.style.justifyContent = "center";
|
||||||
|
|
||||||
|
weightLabel.style.position = "relative";
|
||||||
|
weightLabel.style.inset = "unset";
|
||||||
|
weightLabel.style.transform = "none";
|
||||||
|
|
||||||
statsContainer.appendChild(weightLabel);
|
statsContainer.appendChild(weightLabel);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user