Skip to content
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

Added Active Links to Settings Section for Better Navigation #47

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions resources/views/components/layouts/app/sidebar.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<!-- Desktop User Menu -->
<flux:dropdown position="bottom" align="start">
<flux:profile
class="cursor-pointer"
:name="auth()->user()->name"
:initials="auth()->user()->initials()"
icon-trailing="chevrons-up-down"
Expand Down
6 changes: 3 additions & 3 deletions resources/views/livewire/settings/delete-user-form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ public function deleteUser(Logout $logout): void
}
}; ?>

<section class="mt-10 space-y-6">
<section class="mt-10 space-y-4 rounded-lg border border-red-100 bg-red-50 p-4 dark:border-red-200/10 dark:bg-red-700/10">
<div class="relative mb-5">
<flux:heading>{{ __('Delete account') }}</flux:heading>
<flux:subheading>{{ __('Delete your account and all of its resources') }}</flux:subheading>
<flux:heading class="text-red-600! dark:text-red-100!">{{ __('Delete account') }}</flux:heading>
<flux:subheading class="text-red-600! dark:text-red-100!">{{ __('Delete your account and all of its resources') }}</flux:subheading>
</div>

<flux:modal.trigger name="confirm-user-deletion">
Expand Down