diff options
Diffstat (limited to 'components')
-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 90b2aea..7e5fd6c 100644 --- a/components/tweaks.tsx +++ b/components/tweaks.tsx @@ -82,10 +82,10 @@ export const Tweaks = (props: TweakProps) => { <Button onClick={() => setThreeDim(!threeDim)} colorScheme="purple" - variant={threeDim ? 'solid' : 'outline'} + variant="ghost" zIndex="overlay" > - {threeDim ? '2D' : '3D'} + {threeDim ? '3D' : '2D'} </Button> </Tooltip> <Box display="flex" alignItems="center"> |