fix(qa): ISSUE-003 — widen Nr., Total, and Card/Cash payment fields

- .nr-input: 90px → 120px (fits 7-digit receipt numbers)
- .total-input: 80px → 105px (fits 5-digit amounts with decimals)
- .pay-input: 80px → 105px (PaymentCompactFields Card/Cash columns)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-03-20 14:32:38 +00:00
parent 67d6871176
commit 6eb88c8730
2 changed files with 3 additions and 3 deletions

View File

@@ -122,7 +122,7 @@ const emitUpdate = () => {
/* Payment input */
.pay-input {
width: 80px;
width: 105px;
}
.pay-input :deep(.p-inputnumber-input) {

View File

@@ -569,7 +569,7 @@ defineExpose({
}
.nr-input {
width: 90px;
width: 120px;
flex-shrink: 0;
}
@@ -616,7 +616,7 @@ defineExpose({
}
.total-input {
width: 80px; /* narrower to fit with payments */
width: 105px;
flex-shrink: 0;
}