Skip to content

Commit e969adf

Browse files
committed
Tweaks and cleanup
1 parent 37b2f91 commit e969adf

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

resources/views/emails/2024/base.blade.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<?php /** This is the old email system, check out vendor/mail/html/layout.blade.php instead */?>
12
<!DOCTYPE html>
23
<html lang="{{ app()->getLocale() }}" dir="ltr">
34
<head>

resources/views/vendor/mail/html/layout.blade.php

+11-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22
'layout' => 'user',
33
])
44

5-
<!DOCTYPE html>
6-
<html lang="{{ app()->getLocale() }}" dir="ltr">
5+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6+
<html lang="{{ app()->getLocale() }}" dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
77
<head>
8+
<title>{{ config('app.name') }}</title>
89
<meta charset="utf-8">
10+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
11+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
12+
<meta name="color-scheme" content="light">
13+
<meta name="supported-color-schemes" content="light">
914
<meta name="format-detection" content="telephone=no, date=no, address=no, email=no, url=no">
1015
<meta name="x-apple-disable-message-reformatting">
1116
<link rel="preconnect" href="https://fonts.googleapis.com">
@@ -23,11 +28,15 @@
2328
table { border-collapse: collapse; }
2429
table, td { mso-table-lspace: 0pt; mso-table-rspace: 0pt; }
2530
body, table, td, a { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
31+
p {padding-left: 50px; padding-right: 50px;}
32+
ul {padding-left: 65px; padding-right: 65px;}
2633
h1, h2, h3, h4, h5, p { margin:0;}
2734
@media all and (max-width:639px) {
2835
.wrapper{ width:100%!important; }
2936
.container{ width:100%!important; min-width:100%!important; padding: 0 !important; }
3037
.row{padding-left: 20px!important; padding-right: 20px!important;}
38+
p { padding-left: 20px!important; padding-right: 20px!important; }
39+
ul { padding-left: 35px!important; padding-right: 35px!important; }
3140
}
3241
</style>
3342
</head>

resources/views/vendor/mail/html/themes/default.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
/* Base */
23

34
body,
@@ -70,9 +71,8 @@ p {
7071
font-size: 16px;
7172
line-height: 1.5em;
7273
margin-top: 0;
73-
text-align: left;
74-
padding: 0 50px;
7574
margin-bottom: 1.2rem;
75+
text-align: left;
7676
}
7777

7878
p.sub {

0 commit comments

Comments
 (0)