shipping fix

This commit is contained in:
jason
2026-03-19 16:06:50 -05:00
parent 3c312733ca
commit 0b43b4ebf5

View File

@@ -153,8 +153,10 @@ function buildShippingLabelPdf(options: {
<head>
<style>
@page { size: 4in 6in; margin: 0.15in; }
*, *::before, *::after { box-sizing: border-box; }
html, body { width: 100%; height: 100%; margin: 0; padding: 0; }
body { font-family: ${company.theme.fontFamily}, Arial, sans-serif; color: #111827; font-size: 11px; }
.label { border: 2px solid #111827; border-radius: 6px; padding: 6px; display: flex; flex-direction: column; gap: 6px; min-height: 5.7in; box-sizing: border-box; }
.label { border: 2px solid #111827; border-radius: 6px; padding: 6px; display: flex; flex-direction: column; gap: 6px; height: 100%; overflow: hidden; }
.row { display: flex; justify-content: space-between; gap: 8px; }
.muted { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: #4b5563; }
.brand { border-bottom: 2px solid ${company.theme.primaryColor}; padding-bottom: 6px; }