diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-17 01:28:40 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-17 01:28:40 +0200 |
commit | 6ed792c982991b679d1c50060f4ca25b2eb1b9ca (patch) | |
tree | c1f4e920c0cfa2e9a2dfa1605d242e25cd28bfdd /components/Tweaks/ThemeSelect.tsx | |
parent | ca2fa3dc8d405d0ec451f16b9fcc72cde6bbf470 (diff) | |
parent | d1f02171bd4727fb0c09657d6fe0f21f5cde9617 (diff) |
Merge pull request #120 from org-roam/feat/community-detection
Feat/community detection
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"> |