Merge pull request #8162 from Godmartinz/godfreymartinez-ghi-font-size-of-qr_text

Fixed #8161 and #8114 - font-size for labels used static values in blade instead of using values from settings
This commit is contained in:
snipe 2020-06-22 17:28:38 -07:00 committed by GitHub
commit de4934f21d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,11 +57,11 @@ $qr_size = ($settings->alt_barcode_enabled=='1') && ($settings->alt_barcode!='')
width: 100%;
}
.qr_text {
width: 100%;
height: auto;
width: {{ $settings->labels_width }}in;
height: {{ $settings->labels_height }}in;
padding-top: {{$settings->labels_display_bgutter}}in;
font-family: arial, helvetica, sans-serif;
font-size: x-small;
font-size: {{$settings->labels_fontsize}};
padding-right: .01in;
overflow: hidden !important;
display: inline;