diff --git a/resources/assets/js/views/estimates/View.vue b/resources/assets/js/views/estimates/View.vue index 87623c7e..657e322c 100644 --- a/resources/assets/js/views/estimates/View.vue +++ b/resources/assets/js/views/estimates/View.vue @@ -125,7 +125,7 @@
{{ estimate.user.name }}
{{ estimate.estimate_number }}
-
{{ estimate.status }}
+
{{ estimate.status }}
diff --git a/resources/assets/js/views/invoices/View.vue b/resources/assets/js/views/invoices/View.vue index 314487e2..56fefee0 100644 --- a/resources/assets/js/views/invoices/View.vue +++ b/resources/assets/js/views/invoices/View.vue @@ -125,19 +125,17 @@ v-for="(invoice,index) in invoices" :to="`/admin/invoices/${invoice.id}/view`" :key="index" - class="side-invoice" + class="side-invoice" > - -
-
{{ invoice.user.name }}
-
{{ invoice.invoice_number }}
-
{{ invoice.status }}
-
-
-
-
{{ invoice.formattedInvoiceDate }}
-
- +
+
{{ invoice.user.name }}
+
{{ invoice.invoice_number }}
+
{{ invoice.status }}
+
+
+
+
{{ invoice.formattedInvoiceDate }}
+

{{ $t('invoices.no_matching_invoices') }} @@ -187,7 +185,7 @@ export default { shareableLink () { return `/invoices/pdf/${this.invoice.unique_hash}` } - }, + }, watch: { $route (to, from) { this.loadInvoice() diff --git a/resources/assets/sass/pages/payment-view.scss b/resources/assets/sass/pages/payment-view.scss index e36641d5..aaf1c759 100644 --- a/resources/assets/sass/pages/payment-view.scss +++ b/resources/assets/sass/pages/payment-view.scss @@ -32,6 +32,11 @@ margin-bottom: 98px; } + &.router-link-exact-active { + border-left: 3px solid $ls-color-primary; + background-color: $ls-color-gray--very-light; + } + &:hover { background-color: $ls-color-gray--very-light; }