flip buttons

This commit is contained in:
Peter Steinberger 2025-06-27 01:54:40 +02:00
parent 664bdb75d4
commit af44f2e7bb

View file

@ -42,6 +42,11 @@ export class SidebarHeader extends HeaderBase {
<!-- Action buttons group -->
<div class="flex items-center gap-1">
<!-- Notification button -->
<notification-status
@open-settings=${() => this.dispatchEvent(new CustomEvent('open-settings'))}
></notification-status>
<!-- Create Session button -->
<button
class="p-2 text-accent-green border border-accent-green hover:bg-accent-green hover:text-dark-bg rounded-lg transition-all duration-200 flex-shrink-0"
@ -53,11 +58,6 @@ export class SidebarHeader extends HeaderBase {
</svg>
</button>
<!-- Notification button -->
<notification-status
@open-settings=${() => this.dispatchEvent(new CustomEvent('open-settings'))}
></notification-status>
<!-- User menu -->
${this.renderCompactUserMenu()}
</div>