Skip to content

Commit ccdf217

Browse files
committed
Fix: Update pagination and select component styles for improved layout and consistency.
1 parent 9b5e7c1 commit ccdf217

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/components/ui/pagination.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export function Pagination({
9797
value={pageSize.toString()}
9898
onChange={(value: string) => onPageSizeChange(Number(value))}
9999
options={pageSizeSelectOptions}
100-
className="w-[70px] h-full"
100+
className="w-[70px] h-8 [&>button]:h-full [&>button]:py-0"
101101
/>
102102
</div>
103103
</div>

frontend/src/components/ui/select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function Select({ value, onChange, options, placeholder, className }: Sel
4040
type="button"
4141
onClick={() => setIsOpen(!isOpen)}
4242
className={cn(
43-
'w-full h-full flex items-center justify-between px-2 text-xs',
43+
'w-full flex items-center justify-between px-2 py-2.5 text-xs',
4444
'bg-background border rounded-md',
4545
'hover:bg-accent transition-colors',
4646
'focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2'

0 commit comments

Comments
 (0)