fix(actas): move closure to reusable inspector signing
Android CI / RC / Android · lint, tests, debug APK, release compile (push) Failing after 2m3s
DH V2 CI / API · typecheck, tests, build (push) Successful in 34s
DH V2 CI / WEB · typecheck, build (push) Successful in 20s
Production dependency audit / API · production dependencies (push) Successful in 9s
Production dependency audit / WEB · production dependencies (push) Successful in 8s
DH V2 CI / Docker / scripts contract (push) Successful in 1m18s

This commit is contained in:
DH V2
2026-09-15 08:55:43 -03:00
parent a2ec846721
commit da7c1ddb55
26 changed files with 644 additions and 248 deletions
+27
View File
@@ -1350,3 +1350,30 @@ code { color: #5e6677; font-family: ui-monospace, monospace; font-size: 9px; }
cursor: default;
opacity: .65;
}
/* F6.7 · firma reutilizable del inspector */
.signature-profile-preview {
display: flex;
align-items: center;
gap: 16px;
max-width: 620px;
padding: 14px 16px;
border: 1px solid var(--line);
border-radius: 14px;
background: #f7faf9;
}
.signature-profile-preview img {
width: min(240px, 46%);
height: 88px;
object-fit: contain;
border-radius: 10px;
background: #fff;
border: 1px solid #e3e7e5;
}
.signature-profile-preview strong,
.signature-profile-preview small { display: block; }
.signature-profile-preview small { margin-top: 4px; color: var(--muted); }
@media (max-width: 640px) {
.signature-profile-preview { align-items: flex-start; flex-direction: column; }
.signature-profile-preview img { width: 100%; }
}