Skip to content

more styling fixes #41

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 1 commit into from
Nov 16, 2024
Merged
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
33 changes: 17 additions & 16 deletions resources/js/Layouts/AuthenticatedLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,29 +107,30 @@ watchEffect(() => {
</div>
</template>
<template #end>
<div class="hidden lg:flex items-center ms-6">
<ToggleThemeButton
text
severity="secondary"
rounded
:pt="{
icon: {
class: 'text-muted-color',
},
}"
/>
<div
class="hidden lg:flex items-center ms-6 space-x-3"
>
<div>
<ToggleThemeButton
text
severity="secondary"
rounded
:pt="{
icon: {
class: 'text-muted-color',
},
}"
/>
</div>
<!-- User Dropdown Menu -->
<div class="ms-3 flex flex-col">
<div class="flex flex-col">
<Button
id="user-menu-btn"
text
size="small"
severity="secondary"
@click="toggleUserMenu($event)"
>
<span
class="text-base text-muted-color"
>
<span class="text-muted-color">
{{ $page.props.auth.user.name }}
</span>
<i
Expand Down