chore: change sidebar font size & style (#191)
* chore: change sidebar font size & style * chore: create font size style for sidebar
This commit is contained in:
committed by
GitHub
parent
0f07812cc5
commit
4d0d1e8b95
@@ -38,14 +38,14 @@ export const SidebarSettings: FC<Props> = ({
|
||||
|
||||
<SidebarButton
|
||||
text={t('Export conversations')}
|
||||
icon={<IconFileExport size={16} />}
|
||||
icon={<IconFileExport size={18} />}
|
||||
onClick={() => onExportConversations()}
|
||||
/>
|
||||
|
||||
<SidebarButton
|
||||
text={lightMode === 'light' ? t('Dark mode') : t('Light mode')}
|
||||
icon={
|
||||
lightMode === 'light' ? <IconMoon size={16} /> : <IconSun size={16} />
|
||||
lightMode === 'light' ? <IconMoon size={18} /> : <IconSun size={18} />
|
||||
}
|
||||
onClick={() =>
|
||||
onToggleLightMode(lightMode === 'light' ? 'dark' : 'light')
|
||||
|
||||
Reference in New Issue
Block a user