fix(invoice): prevent report empty pages
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
8b60dbacfa
commit
2bdb1075fb
|
@ -5,7 +5,7 @@ h2 {
|
||||||
|
|
||||||
.table-title {
|
.table-title {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
font-size: 0.8rem
|
font-size: .8rem
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-title h2 {
|
.table-title h2 {
|
||||||
|
@ -16,9 +16,12 @@ h2 {
|
||||||
font-size: 22px
|
font-size: 22px
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#nickname h2 {
|
#nickname h2 {
|
||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
word-wrap: break-word
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#phytosanitary {
|
#phytosanitary {
|
||||||
|
|
|
@ -85,7 +85,7 @@
|
||||||
<!-- End of rectified invoices block -->
|
<!-- End of rectified invoices block -->
|
||||||
|
|
||||||
<!-- Sales block -->
|
<!-- Sales block -->
|
||||||
<div class="vn-mt-lg no-page-break" v-for="ticket in tickets">
|
<div class="vn-mt-lg" v-for="ticket in tickets">
|
||||||
<div class="table-title clearfix">
|
<div class="table-title clearfix">
|
||||||
<div class="pull-left">
|
<div class="pull-left">
|
||||||
<h2>{{$t('deliveryNote')}}</strong>
|
<h2>{{$t('deliveryNote')}}</strong>
|
||||||
|
|
Loading…
Reference in New Issue