Inline CSS Removed

This commit is contained in:
Devansh 2020-09-03 12:15:16 +05:30
parent 21bf97719e
commit 93bc55f507
3 changed files with 11 additions and 4 deletions

View File

@ -4,6 +4,13 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500" rel="stylesheet" type="text/css">
<style>
.payment-method {
font-weight: bold;
font-size: 16px;
color: #242424;
}
</style>
</head>
<body style="font-family: montserrat, sans-serif;">

View File

@ -107,11 +107,11 @@
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
</div>
<div style="font-weight: bold; font-size: 16px; color: #242424;">
<div class="payment-method">
{{ __('shop::app.mail.order.payment') }}
</div>
<div style="font-weight: bold; font-size: 16px; color: #242424;">
<div class="payment-method">
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
</div>
</div>

View File

@ -104,11 +104,11 @@
{{ __('shop::app.mail.order.contact') }} : {{ $order->billing_address->phone }}
</div>
<div style="font-weight: bold; font-size: 16px; color: #242424;">
<div class="payment-method">
{{ __('shop::app.mail.order.payment') }}
</div>
<div style="font-weight: bold; font-size: 16px; color: #242424;">
<div class="payment-method">
{{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
</div>
</div>