Skip to content

Commit 9e3b84d

Browse files
committed
Enhance dark mode support by adjusting styles for inner body, footer, and button in responsive layouts
1 parent 36a1edf commit 9e3b84d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/Illuminate/Mail/resources/views/html/layout.blade.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,22 @@
1212
filter: invert(23%) sepia(5%) saturate(531%) hue-rotate(202deg) brightness(96%) contrast(91%) !important;
1313
}
1414
}
15+
16+
@media only screen and (max-width: 600px) {
17+
.inner-body {
18+
width: 100% !important;
19+
}
20+
21+
.footer {
22+
width: 100% !important;
23+
}
24+
}
25+
26+
@media only screen and (max-width: 500px) {
27+
.button {
28+
width: 100% !important;
29+
}
30+
}
1531
</style>
1632
{!! $head ?? '' !!}
1733
</head>

0 commit comments

Comments
 (0)