Skip to content

Commit 5f45943

Browse files
committed
style(data-table): remove md:w-auto and adjust input width
1 parent 1ce54a9 commit 5f45943

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

console/src/components/ui/data-table.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,11 @@ export function DataTable<TData, TValue>({
195195
<div key={i}>{c}</div>
196196
))}
197197
</div>
198-
<div className="flex items-center gap-4 w-full md:w-auto">
198+
<div className="flex items-center gap-4 w-full">
199199
{filterColumnKey && (
200200
<Input
201201
placeholder={filterPlaceholder}
202-
className="w-full md:max-w-sm"
202+
className="w-full lg:w-1/3 xl:w-1/4"
203203
value={searchValue}
204204
onChange={(e) => {
205205
setSearchValue(e.target.value);

0 commit comments

Comments
 (0)