mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-13 05:26:47 +00:00
🎨 **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:
@@ -49,7 +49,7 @@ mount(function() {
|
|||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
<!-- Logo -->
|
<!-- 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>
|
</div>
|
||||||
|
|
||||||
@php
|
@php
|
||||||
|
|||||||
@@ -177,18 +177,26 @@ $delete = function ($id) {
|
|||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</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)
|
@if($currentPleb && $currentPleb->id === $project->einundzwanzig_pleb_id)
|
||||||
<x-button
|
<x-button
|
||||||
|
icon="trash"
|
||||||
xs
|
xs
|
||||||
negative
|
negative
|
||||||
wire:click="confirmDelete({{ $project->id }})"
|
wire:click="confirmDelete({{ $project->id }})"
|
||||||
label="Löschen"/>
|
label="Löschen"/>
|
||||||
<x-button
|
<x-button
|
||||||
|
icon="pencil"
|
||||||
xs
|
xs
|
||||||
|
secondary
|
||||||
:href="route('association.projectSupport.edit', ['projectProposal' => $project])"
|
:href="route('association.projectSupport.edit', ['projectProposal' => $project])"
|
||||||
label="Editieren"/>
|
label="Editieren"/>
|
||||||
@endif
|
@endif
|
||||||
|
<x-button
|
||||||
|
icon="folder-open"
|
||||||
|
xs
|
||||||
|
:href="route('association.projectSupport.item', ['projectProposal' => $project])"
|
||||||
|
label="Öffnen"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
Reference in New Issue
Block a user