akaunting 3.0 (the last dance)

This commit is contained in:
Burak Civan
2022-06-01 10:15:55 +03:00
parent cead09f6d4
commit d9c0764572
3812 changed files with 126831 additions and 102949 deletions

View File

@ -0,0 +1,31 @@
<span class="relative" data-tooltip-target="{{ $id }}" data-tooltip-placement="{{ $placement }}">
{!! $slot !!}
</span>
<div id="{{ $id }}"
role="tooltip"
@class([
'inline-block absolute invisible z-20 py-1 px-2',
'text-sm font-medium',
'rounded-lg',
$backgroundColor,
$textColor,
$size,
'border',
$borderColor,
'shadow-sm opacity-0 tooltip-content',
$whitespace
])
>
{!! $message !!}
<div
@class([
'absolute w-2 h-2 before:absolute before:w-2 before:h-2 before:bg-white before:border-gray-200 before:transform before:rotate-45 before:border',
$tooltipPosition,
$borderColor
])
data-popper-arrow
>
</div>
</div>