🎨 **style**(sidebar): Update logo image in sidebar for better appearance

🔧 **fix**(project-support): Enhance button layout and add new action buttons
This commit is contained in:
fsociety
2024-10-25 11:49:26 +02:00
parent 77c4f0158e
commit deb5212653
2 changed files with 10 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ mount(function() {
</svg>
</button>
<!-- Logo -->
<img src="{{ asset('img/einundzwanzig-horizontal-inverted.svg') }}" alt="Logo" width="auto" height="32">
<img class="w-6 h-6" src="{{ asset('einundzwanzig-alpha.jpg') }}" alt="Logo">
</div>
@php

View File

@@ -177,18 +177,26 @@ $delete = function ($id) {
</div>
@endif
</div>
<div class="flex justify-between items-center mt-3">
<div class="flex flex-col sm:flex-row justify-between items-center mt-3 space-y-2 sm:space-y-0">
@if($currentPleb && $currentPleb->id === $project->einundzwanzig_pleb_id)
<x-button
icon="trash"
xs
negative
wire:click="confirmDelete({{ $project->id }})"
label="Löschen"/>
<x-button
icon="pencil"
xs
secondary
:href="route('association.projectSupport.edit', ['projectProposal' => $project])"
label="Editieren"/>
@endif
<x-button
icon="folder-open"
xs
:href="route('association.projectSupport.item', ['projectProposal' => $project])"
label="Öffnen"/>
</div>
</div>
</article>