diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-07-28 14:48:13 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-07-28 14:48:13 +0200 |
commit | 49aee30dccde55e331b06232703dcd386efd72f3 (patch) | |
tree | aff01585ebdea90735d3c311e441dbc26842f508 /components | |
parent | 13b121332a9ba5132e70c62a545fa58b9e07ddfa (diff) |
changed button colors a bit
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"> |