fix email layout on mobile

This commit is contained in:
Mohit Panjwani
2020-05-30 20:30:09 +05:30
parent 3e4decdfb9
commit 251648f53c
4 changed files with 3 additions and 5 deletions

View File

@ -16,7 +16,7 @@
{{-- Subcopy --}}
@slot('subcopy')
@component('mail::subcopy')
You have received a new estimate from <span class="company-name">{{$data['company']['name']}}</span>
You have received a new estimate from <b>{{$data['company']['name']}}</b>
@component('mail::button', ['url' => url('/customer/estimates/pdf/'.$data['estimate']['unique_hash'])])
View Estimate
@endcomponent

View File

@ -16,7 +16,7 @@
{{-- Subcopy --}}
@slot('subcopy')
@component('mail::subcopy')
You have received a new invoice from <span class="company-name">{{$data['company']['name']}}</span>
You have received a new invoice from <b>{{$data['company']['name']}}</b>
@component('mail::button', ['url' => url('/customer/invoices/pdf/'.$data['invoice']['unique_hash'])])
View Invoice
@endcomponent

View File

@ -16,7 +16,7 @@
{{-- Subcopy --}}
@slot('subcopy')
@component('mail::subcopy')
You have received a new payment from <span class="company-name">{{$data['company']['name']}}</span>
You have received a new payment from <b>{{$data['company']['name']}}</b>
@component('mail::button', ['url' => url('/payments/pdf/'.$data['payment']['unique_hash'])])
View Payment
@endcomponent

View File

@ -158,8 +158,6 @@ img {
}
.subcopy p {
display: flex;
justify-content: center;
text-align: center;
font-size: 20px;
}