feat: update platform icons and badges with improved styling, responsive design, and enhanced accessibility for app development section

This commit is contained in:
Ümit Tunç
2026-05-22 07:36:33 +03:00
parent 11cb89c944
commit 61cc5c8dda
8 changed files with 39 additions and 44 deletions
@@ -4,17 +4,16 @@
<div {{ $attributes->class(['app-dev-platforms']) }}>
@foreach($platforms as $platform)
<span class="app-dev-platform-pill" title="{{ t($platform['name']) }}">
<span class="app-dev-platform-item" title="{{ t($platform['name']) }}">
<img
src="{{ asset('assets/img/platforms/' . $platform['logo']) }}"
class="app-dev-platform-icon"
alt=""
width="28"
height="28"
alt="{{ t($platform['name']) }}"
width="38"
height="38"
loading="lazy"
decoding="async"
>
<span class="app-dev-platform-label">{!! t($platform['label'] ?? $platform['name']) !!}</span>
</span>
@endforeach
</div>