/* Label dimensions only matter when printing; on screen let them stack naturally. */
.label {
  margin-bottom: 20px;
}

@media print {
  #app,
  .label-header {
    display: none;
  }

  .label {
    height: 2in;
    width: 4in;
    margin-bottom: 0;
    page-break-after: always;
  }
}
