Summary style and position fixed

This commit is contained in:
merve karaman 2023-12-01 13:06:34 +03:00 committed by GitHub
parent 8dc76b7d5a
commit 1582d0280b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@
{!! $chart->container() !!}
</div>
<div class="w-full lg:w-1/12 flex flex-row lg:flex-col items-center justify-around sm:justify-start lg:mt-11 space-y-0 sm:space-y-2">
<div class="w-full lg:w-1/12 flex flex-row lg:flex-col items-center justify-start sm:justify-center lg:mt-11 space-y-0 sm:space-y-2">
<div class="relative w-32 lg:w-auto flex flex-col items-center sm:justify-between text-center">
<div class="flex justify-end lg:block text-lg">
<x-tooltip id="tooltip-cashflow-incoming" placement="top" message="{{ $totals['incoming_exact'] }}">
@ -14,11 +14,11 @@
</x-tooltip>
</div>
<span class="text-green text-xs hidden lg:block">
<span class="text-green text-xs lg:block">
{{ trans('general.incoming') }}
</span>
<span class="absolute lg:relative hidden lg:block material-icons mt-2 -right-12 lg:right-0">remove</span>
<span class="absolute lg:relative lg:block material-icons mt-2 -right-4 lg:right-0">remove</span>
</div>
<div class="relative w-32 lg:w-auto flex flex-col items-center sm:justify-between">
@ -28,11 +28,11 @@
</x-tooltip>
</div>
<span class="text-rose text-xs hidden lg:block">
<span class="text-rose text-xs lg:block">
{{ trans('general.outgoing') }}
</span>
<span class="absolute lg:relative hidden lg:block material-icons mt-2 -right-12 lg:right-0">drag_handle</span>
<span class="absolute lg:relative lg:block material-icons mt-2 -right-4 lg:right-0">drag_handle</span>
</div>
<div class="relative w-32 lg:w-auto flex flex-col items-center sm:justify-between">
@ -42,7 +42,7 @@
</x-tooltip>
</div>
<span class="text-purple text-xs hidden lg:block">{{ trans_choice('general.profits', 1) }}</span>
<span class="text-purple text-xs lg:block">{{ trans_choice('general.profits', 1) }}</span>
</div>
</div>
</div>