Add ladill-icons/events.svg and point list rows at it instead of the launcher brand mark so in-app tiles show a product-appropriate calendar glyph. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" id="Layer_1" data-name="Layer 1" viewBox="0 0 24 24" width="512" height="512"><path fill="#7c3aed" d="m8,12h-2c-1.103,0-2,.897-2,2v2c0,1.103.897,2,2,2h2c1.103,0,2-.897,2-2v-2c0-1.103-.897-2-2-2Zm-2,4v-2h2v2s-2,0-2,0ZM19,2h-1v-1c0-.552-.447-1-1-1s-1,.448-1,1v1h-8v-1c0-.552-.447-1-1-1s-1,.448-1,1v1h-1C2.243,2,0,4.243,0,7v12c0,2.757,2.243,5,5,5h14c2.757,0,5-2.243,5-5V7c0-2.757-2.243-5-5-5Zm-14,2h14c1.654,0,3,1.346,3,3v1H2v-1c0-1.654,1.346-3,3-3Zm14,18H5c-1.654,0-3-1.346-3-3v-9h20v9c0,1.654-1.346,3-3,3Z"/></svg>
|
||||||
|
After Width: | Height: | Size: 593 B |
@@ -66,8 +66,8 @@
|
|||||||
<div class="divide-y divide-slate-100">
|
<div class="divide-y divide-slate-100">
|
||||||
@foreach($qrCodes as $code)
|
@foreach($qrCodes as $code)
|
||||||
<a href="{{ route('events.show', $code) }}" class="flex items-center gap-4 px-6 py-4 transition hover:bg-slate-50">
|
<a href="{{ route('events.show', $code) }}" class="flex items-center gap-4 px-6 py-4 transition hover:bg-slate-50">
|
||||||
<div class="flex h-10 w-10 shrink-0 items-center justify-center rounded-lg border border-slate-200 bg-white {{ $code->is_active ? '' : 'opacity-50' }}">
|
<div class="flex h-10 w-10 shrink-0 items-center justify-center rounded-lg {{ $code->is_active ? 'bg-violet-100' : 'bg-slate-100 opacity-50' }}">
|
||||||
<img src="{{ asset('images/launcher-icons/events.svg') }}?v={{ @filemtime(public_path('images/launcher-icons/events.svg')) ?: '1' }}" alt="" class="h-6 w-6 object-contain" width="24" height="24">
|
<img src="{{ asset('images/ladill-icons/events.svg') }}?v={{ @filemtime(public_path('images/ladill-icons/events.svg')) ?: '1' }}" alt="" class="h-5 w-5 object-contain" width="20" height="20">
|
||||||
</div>
|
</div>
|
||||||
<div class="min-w-0 flex-1">
|
<div class="min-w-0 flex-1">
|
||||||
<p class="truncate text-sm font-semibold text-slate-900">{{ $code->label }}</p>
|
<p class="truncate text-sm font-semibold text-slate-900">{{ $code->label }}</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user