1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 13:42:49 +01:00
invoiceninja/resources/views/email/components/header.blade.php
Benjamin Beganović 6ca0841626
(wip) Default e-mail template (#3342)
* E-mail template

* Light & dark -email

* Light version of template & example-mail

* Add template with dark background

* Remove unused templates
2020-02-21 07:56:42 +11:00

8 lines
308 B
PHP

<div class="h-64 flex flex-col items-center justify-center text-center tracking-wide leading-normal bg-gray-900 -mx-8 -mt-8 p-4">
<h1 class="text-white text-4xl font-semibold">{{ $slot }}</h1>
<p class="text-white text-xl">
@isset($p)
{{ $p }}
@endisset
</p>
</div>