Apply text-sm to follow rest

This commit is contained in:
Benjamin Beganović 2021-07-08 13:12:54 +02:00
parent 06bb3b0320
commit a82145613f

View File

@ -90,7 +90,7 @@
<div class="mt-4 space-x-2"> <div class="mt-4 space-x-2">
@foreach($subscription->service()->getPlans() as $_subscription) @foreach($subscription->service()->getPlans() as $_subscription)
<a class="border mt-4 bg-white rounded py-2 px-4 hover:bg-gray-100" target="_blank" href="{{ route('client.subscription.purchase', $_subscription->hashed_id) }}">{{ $_subscription->name }}</a> <a class="border mt-4 bg-white rounded py-2 px-4 hover:bg-gray-100 text-sm" target="_blank" href="{{ route('client.subscription.purchase', $_subscription->hashed_id) }}">{{ $_subscription->name }}</a>
@endforeach @endforeach
</div> </div>
</div> </div>