Skip to content

Commit

Permalink
Increase default cell width to fix layout issue on rendertron (#4)
Browse files Browse the repository at this point in the history
* Increase default cell width to fix layout issue
  • Loading branch information
nsharma123 authored Jun 10, 2022
1 parent 0d8898a commit 4badeda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "An infinite scroller web component.",
"license": "AGPL-3.0-only",
"author": "Internet Archive",
"version": "0.1.2",
"version": "0.1.3",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/infinite-scroller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,9 +380,9 @@ export class InfiniteScroller
const sentinelHeightCss = css`var(--infiniteScrollerSentinelDistanceFromEnd, 200rem)`;
const rowGapSizeCss = css`var(--infiniteScrollerRowGap, 1.7rem)`;
const colGapSizeCss = css`var(--infiniteScrollerColGap, 1.7rem)`;
const cellMinWidth = css`var(--infiniteScrollerCellMinWidth, 10rem)`;
const cellMinWidth = css`var(--infiniteScrollerCellMinWidth, 16rem)`;
const cellMaxWidth = css`var(--infiniteScrollerCellMaxWidth, 1fr)`;
const cellMinHeight = css`var(--infiniteScrollerCellMinHeight, 10rem)`;
const cellMinHeight = css`var(--infiniteScrollerCellMinHeight, 22.5rem)`;
const cellMaxHeight = css`var(--infiniteScrollerCellMaxHeight, none)`;
const cellOutline = css`var(--infiniteScrollerCellOutline, 0)`;

Expand Down

0 comments on commit 4badeda

Please sign in to comment.