Files
sirpremiumv2/resources/views/components/ver-entrada.blade.php
T
Juan Felipe Duarte 6d49224d44 Improve mobile table and search input UI
Hides the 'entradas' label on small screens, reduces the max width of the search input for mobile, adds text-xs and break-all classes to mobile table rows for better readability, and adjusts spacing in action buttons for a more compact layout.
2025-09-23 10:37:29 -05:00

13 lines
503 B
PHP
Executable File

<div class="flex space-x-2">
<p class="text-xs md:text-sm my-auto">Ver</p>
<select wire:model="entradas" name="entradas" id="entradas" class="my-auto border-gray-200 rounded-md appearance-none text-sm">
<option value="10">10</option>
<option value="25">25</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
<p class="text-xs md:text-sm my-auto hidden md:block">entradas</p>
</div>