Add CSS to center the 1D barcode and add PHP to include the custom CSS from Settings.

This commit is contained in:
Daniel Dreier 2016-06-17 14:38:50 -05:00
parent 4a148ac069
commit 52084a2c24

View file

@ -49,6 +49,11 @@
width: 100%;
height: 100%;
}
img.barcode {
display: block;
margin-left: auto;
margin-right: auto;
}
.qr_text {
width: {{ $qr_txt_size }}in;
@ -88,6 +93,9 @@
}
}
@if (\App\Models\Setting::getSettings()->custom_css)
{{ \App\Models\Setting::getSettings()->show_custom_css() }}
@endif
</style>