mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
corrected an error where font-size for labels were static in settings.
This commit is contained in:
parent
af06e42056
commit
b10076b015
|
@ -57,11 +57,11 @@ $qr_size = ($settings->alt_barcode_enabled=='1') && ($settings->alt_barcode!='')
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.qr_text {
|
.qr_text {
|
||||||
width: 100%;
|
width: {{ $settings->labels_width }}in;
|
||||||
height: auto;
|
height: {{ $settings->labels_height }}in;
|
||||||
padding-top: {{$settings->labels_display_bgutter}}in;
|
padding-top: {{$settings->labels_display_bgutter}}in;
|
||||||
font-family: arial, helvetica, sans-serif;
|
font-family: arial, helvetica, sans-serif;
|
||||||
font-size: x-small;
|
font-size: {{$settings->labels_fontsize}};
|
||||||
padding-right: .01in;
|
padding-right: .01in;
|
||||||
overflow: hidden !important;
|
overflow: hidden !important;
|
||||||
display: inline;
|
display: inline;
|
||||||
|
|
Loading…
Reference in a new issue