aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.ts b/src/lib.ts
index bee7d6b..459e3c1 100644
--- a/src/lib.ts
+++ b/src/lib.ts
@@ -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'