Added DialogButton to handle mobile.
Some checks are pending
Create docker images (cloud) / Build, push, and deploy (push) Waiting to run
Node.js CI / build (postgresql, 18.18, 10) (push) Waiting to run

This commit is contained in:
Mike Cao 2025-10-16 23:59:18 -07:00
parent 036748cdeb
commit 40492ec7c4
32 changed files with 2146 additions and 1807 deletions

View file

@ -64,7 +64,7 @@ export function DataGrid({
return (
<Column gap="4" minHeight="300px">
{allowSearch && (
<Row alignItems="center" justifyContent="space-between">
<Row alignItems="center" justifyContent="space-between" wrap="wrap" gap>
<SearchField
value={search}
onSearch={handleSearch}

View file

@ -104,8 +104,8 @@ export function FilterRecord({
</Select>
)}
</Grid>
<Column justifyContent="flex-end">
<Button variant="quiet" onPress={() => onRemove?.(name)}>
<Column justifyContent="flex-start">
<Button onPress={() => onRemove?.(name)}>
<Icon>
<X />
</Icon>

View file

@ -9,7 +9,7 @@ export function MobileMenu(props: DialogProps) {
<Menu />
</Icon>
</Button>
<Modal position="left" offset="80px">
<Modal placement="left" offset="80px">
<Dialog variant="sheet" {...props} />
</Modal>
</DialogTrigger>