diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-16 23:54:48 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-10-16 23:54:48 +0200 |
commit | 0895967f20ef33bc0f32c99bac0a93761915b87f (patch) | |
tree | b427a25eb977e00107b7f2aa4cbf7271e2e0e633 /components/Tweaks/ThemeSelect.tsx | |
parent | 64b579b4d6e989ea7c71840a1dde2c3dc360365d (diff) |
feat(algos): ability to select coloring
Diffstat (limited to 'components/Tweaks/ThemeSelect.tsx')
-rw-r--r-- | components/Tweaks/ThemeSelect.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/components/Tweaks/ThemeSelect.tsx b/components/Tweaks/ThemeSelect.tsx index 6a6b5d8..d5a7f54 100644 --- a/components/Tweaks/ThemeSelect.tsx +++ b/components/Tweaks/ThemeSelect.tsx @@ -22,7 +22,13 @@ export const ThemeSelect = () => { <Flex alignItems="center" justifyContent="space-between" pl={7} pr={2}> <Text>Theme</Text> <Menu isLazy placement="bottom" closeOnSelect={false}> - <MenuButton as={Button} colorScheme="" color="black" rightIcon={<ChevronDownIcon />}> + <MenuButton + as={Button} + size="sm" + colorScheme="" + color="black" + rightIcon={<ChevronDownIcon />} + > {emacsTheme[0]} </MenuButton> <MenuList minW={10} zIndex="popover" bgColor="gray.200"> |