diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-06-29 14:49:01 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-06-29 14:55:40 +1000 |
| commit | e3a86973922fa9370900f2e3b07a78222e44b056 (patch) | |
| tree | a20244f8773ea6d60273213b9848e087e0a71e6f /src/App.vue | |
| parent | bc53f5a138a7d1dc7ab5547ec5c6d72fe2fc3c31 (diff) | |
Remove constant-scrollbar-gap for ancestry-bar
Avoided having overflow:auto cause tile-overlapping scrollbar by
using less tile-padding. Trying to solve this by dynamically
detecting overflow seemed to get messy.
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index d16ad68..7fca4c5 100644 --- a/src/App.vue +++ b/src/App.vue @@ -149,7 +149,7 @@ function getDefaultUiOpts(lytOpts: LayoutOptions): UiOptions { nonleafHeaderColor: bgColorDark, ancestryBarBgColor: bgColorLight, // Component sizing - ancestryBarBreadth: lytOpts.maxTileSz / 2 + lytOpts.tileSpacing*2 + scrollGap, // px + ancestryBarBreadth: lytOpts.maxTileSz / 2 + lytOpts.tileSpacing*2, // px tutPaneSz: 200, // px scrollGap, // Timing related |
