fix: somehwat fix overlap with vanilla seqta averages

This commit is contained in:
2026-04-07 21:25:07 +09:30
parent 97a1226eaf
commit 1f26fb26d7
@@ -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);
} }