21 lines
302 B
CSS
21 lines
302 B
CSS
.print-only {
|
|
display: none;
|
|
}
|
|
|
|
@media print {
|
|
.print-only {
|
|
display: block;
|
|
}
|
|
|
|
|
|
.barcode-container {
|
|
text-align: left;
|
|
margin: 1.25mm;
|
|
padding: 1.25mm;
|
|
background-color: white;
|
|
}
|
|
|
|
.barcode-attribute-text {
|
|
line-height: 1;
|
|
}
|
|
} |