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:
Danil Shishkevich
2023-03-26 16:29:31 +07:00
committed by GitHub
parent 0f07812cc5
commit 4d0d1e8b95
10 changed files with 24 additions and 19 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ export const Key: FC<Props> = ({ apiKey, onApiKeyChange }) => {
return isChanging ? (
<div className="duration:200 flex w-full cursor-pointer items-center rounded-md py-3 px-3 transition-colors hover:bg-gray-500/10">
<IconKey size={16} />
<IconKey size={18} />
<input
className="ml-2 h-[20px] flex-1 overflow-hidden overflow-ellipsis border-b border-neutral-400 bg-transparent pr-1 text-left text-white outline-none focus:border-neutral-100"
@@ -61,7 +61,7 @@ export const Key: FC<Props> = ({ apiKey, onApiKeyChange }) => {
) : (
<SidebarButton
text={t('OpenAI API Key')}
icon={<IconKey size={16} />}
icon={<IconKey size={18} />}
onClick={() => setIsChanging(true)}
/>
);