refactor(settings): title style
This commit is contained in:
parent
d3a163e50a
commit
c06b20e09d
@ -11,7 +11,7 @@ const AssistantSettings: FC = () => {
|
|||||||
<SettingContainer>
|
<SettingContainer>
|
||||||
<SettingTitle>Default Assistant</SettingTitle>
|
<SettingTitle>Default Assistant</SettingTitle>
|
||||||
<SettingDivider />
|
<SettingDivider />
|
||||||
<SettingSubtitle>Name</SettingSubtitle>
|
<SettingSubtitle style={{ marginTop: 0 }}>Name</SettingSubtitle>
|
||||||
<Input
|
<Input
|
||||||
placeholder="Assistant Name"
|
placeholder="Assistant Name"
|
||||||
value={defaultAssistant.name}
|
value={defaultAssistant.name}
|
||||||
@ -19,7 +19,7 @@ const AssistantSettings: FC = () => {
|
|||||||
/>
|
/>
|
||||||
<SettingSubtitle>Description</SettingSubtitle>
|
<SettingSubtitle>Description</SettingSubtitle>
|
||||||
<TextArea
|
<TextArea
|
||||||
rows={4}
|
rows={2}
|
||||||
placeholder="Assistant Description"
|
placeholder="Assistant Description"
|
||||||
value={defaultAssistant.description}
|
value={defaultAssistant.description}
|
||||||
onChange={(e) => updateDefaultAssistant({ ...defaultAssistant, description: e.target.value })}
|
onChange={(e) => updateDefaultAssistant({ ...defaultAssistant, description: e.target.value })}
|
||||||
|
|||||||
@ -32,7 +32,7 @@ const ModelSettings: FC = () => {
|
|||||||
onChange={(id) => setDefaultModel(find(allModels, { id }) as Model)}
|
onChange={(id) => setDefaultModel(find(allModels, { id }) as Model)}
|
||||||
options={selectOptions}
|
options={selectOptions}
|
||||||
/>
|
/>
|
||||||
<div style={{ height: 40 }} />
|
<div style={{ height: 30 }} />
|
||||||
<SettingTitle>Topic Naming Model</SettingTitle>
|
<SettingTitle>Topic Naming Model</SettingTitle>
|
||||||
<SettingDivider />
|
<SettingDivider />
|
||||||
<Select
|
<Select
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user