coolify/resources/views/components/services/links.blade.php
Andras Bacsai b00ab4c35f ui(components): adjust SVG icon sizes for consistency across applications and services
- Reduced the size of SVG icons in the advanced application and service components from 6x6 to 4x4 for a more uniform appearance.
- Updated the external link component size in the services links to maintain visual consistency.
2025-10-01 18:43:21 +02:00

12 lines
336 B
PHP

@if ($links->count() > 0)
<x-dropdown>
<x-slot:title>
Links
</x-slot>
@foreach ($links as $link)
<a class="dropdown-item" target="_blank" href="{{ $link }}">
<x-external-link class="size-3.5" />{{ $link }}
</a>
@endforeach
</x-dropdown>
@endif