1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 13:42:49 +01:00
invoiceninja/resources/views/email/components/button.blade.php

10 lines
413 B
PHP
Raw Normal View History

2020-02-26 21:55:23 +01:00
<div class="px-10 py-6 flex flex-col items-center">
<a href="{{ $url }}" class="bg-green-500 px-4 py-3 text-white leading-tight hover:bg-green-600" style="color: white !important;">{{ $slot }}</a>
</div>
@isset($show_link)
<div class="flex flex-col">
<p>{{ ctrans('texts.email_link_not_working') }}:</p>
<a class="text-green-700 hover:text-green-800" href="{{ $url }}">{{ $url }}</a>
</div>
@endisset