fix: tighten calc stack display layout

Reorder the stack cell grid so the copy button sits beside the label and reduce spacing to better align the value column.
This commit is contained in:
2026-05-16 02:04:47 +02:00
parent 6c8c032f7a
commit 2504716c64
2 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -130,9 +130,9 @@ body {
.stack-cell {
display: grid;
grid-template-columns: 2.2ch minmax(0, 1fr) auto;
grid-template-columns: 2.2ch auto minmax(0, 1fr);
align-items: center;
gap: 12px;
gap: 8px;
font-size: 20px;
line-height: 1;
min-height: 0;
@@ -337,7 +337,7 @@ button:active {
background: transparent;
box-shadow: none;
color: rgba(31, 42, 18, 0.58);
margin-left: 6px;
margin-left: 0;
}
.stack-cell:last-child {