style(app-ui): 每頁筆數下拉加寬右側 padding,避免數字與箭頭相疊

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
terrylee 2026-07-16 10:55:57 +08:00
parent 888db7ffe7
commit de3723bb1e

View File

@ -10,7 +10,7 @@
<form method="GET" action="{{ $route }}" class="flex flex-wrap items-center justify-between gap-3 mb-4"> <form method="GET" action="{{ $route }}" class="flex flex-wrap items-center justify-between gap-3 mb-4">
<div class="flex items-center gap-2 text-sm text-gray-600 dark:text-gray-400"> <div class="flex items-center gap-2 text-sm text-gray-600 dark:text-gray-400">
<span>{{ __('Show') }}</span> <span>{{ __('Show') }}</span>
<select name="per_page" onchange="this.form.submit()" class="luxury-input py-1.5 px-2 text-sm w-auto"> <select name="per_page" onchange="this.form.submit()" class="luxury-input py-1.5 pl-3 pr-8 text-sm w-auto cursor-pointer">
@foreach([10, 25, 50, 100] as $n) @foreach([10, 25, 50, 100] as $n)
<option value="{{ $n }}" {{ (int)$perPage === $n ? 'selected' : '' }}>{{ $n }}</option> <option value="{{ $n }}" {{ (int)$perPage === $n ? 'selected' : '' }}>{{ $n }}</option>
@endforeach @endforeach