diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-08-31 13:43:59 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-08-31 13:43:59 +1000 |
| commit | 85ab64dbbef32ff978b09802811bdbcb05300d64 (patch) | |
| tree | ecb9b05fa82457b13f3b06a58f1cde736968ce3e /src/lib.ts | |
| parent | 898e7ed4e18a89388ab68eb30597af30a76c442d (diff) | |
Increase default min tile size on non-small screens
Diffstat (limited to 'src/lib.ts')
| -rw-r--r-- | src/lib.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -121,7 +121,7 @@ export function getDefaultLytOpts(): LayoutOptions { return { tileSpacing: screenSz == 'sm' ? 6 : 9, //px headerSz: 22, // px - minTileSz: 50, // px + minTileSz: screenSz == 'sm' ? 50 : 80, // px maxTileSz: 200, // px // Layout-algorithm related layoutType: 'sweep', // 'sqr' | 'rect' | 'sweep' |
