Skip to content

Commit

Permalink
style: fix the "Add new record" UI (#916)
Browse files Browse the repository at this point in the history
  • Loading branch information
AliceLanniste authored Sep 19, 2024
1 parent b1eabf1 commit b1ffa44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const GridView = (props: IViewBaseProps) => {
<AggregationProvider>
<RowCountProvider>
<GridToolBar />
<div className="w-full grow overflow-hidden sm:pl-2">
<div className="w-full grow sm:pl-2">
{isHydrated && <GridViewBase groupPointsServerDataMap={groupPointsServerDataMap} />}
{graphOpen && <DynamicCellGraph />}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ export const GridViewBaseInner: React.FC<IGridViewBaseInnerProps> = (
);

return (
<div ref={containerRef} className="relative size-full overflow-hidden">
<div ref={containerRef} className="relative size-full">
<Grid
ref={gridRef}
theme={theme}
Expand Down

0 comments on commit b1ffa44

Please sign in to comment.