/*
 * Box-distribution label print stylesheet.
 *
 * Loaded into the popup print window via <link rel="stylesheet"> from the
 * same origin so it satisfies CSP `style-src 'self'`. Inline `<style>`
 * blocks are blocked by the deployed CSP, even inside blob: URL popups —
 * Chrome inherits the parent CSP for same-origin blob documents.
 *
 * See docs/wiki/csp-printing-pattern.md.
 */

html, body {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

@page {
  size: auto;
  margin: 0;
}
