Skip to content

Commit

Permalink
Tweak toolbar height and alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
abefernan committed Oct 23, 2024
1 parent 4a63042 commit c733579
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/txs-table/txs-table-toolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ export function DataTableToolbar<TData>({
table,
}: DataTableToolbarProps<TData>) {
return (
<div className="flex justify-between">
<div className="flex flex-wrap gap-2">
<div className="flex items-center justify-between">
<div className="flex flex-wrap items-center gap-2">
<Select
value={getSelectedValue(table)}
onValueChange={(value) => {
Expand All @@ -73,7 +73,7 @@ export function DataTableToolbar<TData>({
}
}}
>
<SelectTrigger className="w-[220px]">
<SelectTrigger className="w-[220px] h-[32px]">
<SelectValue />
</SelectTrigger>
<SelectContent>
Expand Down

0 comments on commit c733579

Please sign in to comment.