Skip to content

UI fixes #61

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions resources/views/components/modal.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@
x-transition:leave-end="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
>
<!-- Scrollable Content -->
<div class="flex flex-col max-h-screen overflow-y-auto p-6">
<header class="text-center mb-4">
<div class="flex flex-col max-h-screen overflow-y-auto">
<header class="text-center mb-4 px-6">
<h2 class="text-lg font-semibold">{{ $modalTitle ?? '' }}</h2>
</header>

<main class="mb-4">
<main class="mb-4 px-6">
{{ $content ?? '' }}
</main>

<footer class="p-4 py-4 px-4 -mx-8 -mb-8 mt-8 bg-slate-100 dark:bg-gray-500">
<footer class="p-4 mt-8 bg-slate-100 dark:bg-gray-500">
<div class="flex justify-end gap-4">
{{ $footer ?? '' }}
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/admin/users/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div class="mt-5 text-left">
<div class="flex border-b pb-2">
<i class="pt-1 pr-1 fa fa-envelope"></i>
<div style="width:200px; overflow: scroll">{{ $user->email }}</div>
<div class="w-auto overflow-hidden text-ellipsis whitespace-nowrap">{{ $user->email }}</div>
</div>
</div>

Expand Down