diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-07-31 01:52:36 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-07-31 01:52:36 +0200 |
commit | 4af1e35e7bda7fd54f06da81c2fc6d367d38c102 (patch) | |
tree | ac56400057255192c2abe7ee6df00cb4fddf1cfb /components/tweaks.tsx | |
parent | becbc14293c38e131c8ce579ef459783b988a9f5 (diff) |
more ui improvements, better defaults
Diffstat (limited to 'components/tweaks.tsx')
-rw-r--r-- | components/tweaks.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/tweaks.tsx b/components/tweaks.tsx index e7653df..34421f1 100644 --- a/components/tweaks.tsx +++ b/components/tweaks.tsx @@ -128,7 +128,7 @@ export const Tweaks = (props: TweakProps) => { position="relative" boxShadow="xl" > - <Box display="flex" justifyContent="space-between" alignItems="center"> + <Box display="flex" justifyContent="space-between" alignItems="center" paddingRight={2}> <Tooltip label={'Switch to ' + threeDim ? '2D' : '3D' + ' view'}> <Button onClick={() => setThreeDim(!threeDim)} variant="ghost" zIndex="overlay"> {threeDim ? '3D' : '2D'} @@ -300,7 +300,7 @@ export const Tweaks = (props: TweakProps) => { } /> <EnableSection - label="Keeps nodes centered" + label="Center nodes" value={physics.centering} onChange={() => setPhysics({ ...physics, centering: !physics.centering }) |