Spaces:
Sleeping
Sleeping
Commit
•
81f7921
1
Parent(s):
b022cb9
small ui tweaks
Browse files
src/app/interface/settings-dialog/index.tsx
CHANGED
@@ -331,12 +331,13 @@ export function SettingsDialog() {
|
|
331 |
</Field>
|
332 |
</>}
|
333 |
|
334 |
-
<SectionTitle>👇 Story generation options (🚧 experimental
|
335 |
|
336 |
-
<p>⚠️
|
337 |
-
⚠️ Billing and privacy depend on your preferred vendor so please exercice caution.</p>
|
338 |
<Field>
|
339 |
<Label className={cn(
|
|
|
340 |
)}>Story generation - please choose a LLM provider:</Label>
|
341 |
<Select
|
342 |
onValueChange={(value: string) => {
|
|
|
331 |
</Field>
|
332 |
</>}
|
333 |
|
334 |
+
<SectionTitle>👇 Story generation options (🚧 experimental feature 🚧)</SectionTitle>
|
335 |
|
336 |
+
<p>⚠️ Some vendors might be buggy or require tunning, please report issues to Discord.<br/>
|
337 |
+
⚠️ Billing and privacy depend on your preferred vendor, so please exercice caution.</p>
|
338 |
<Field>
|
339 |
<Label className={cn(
|
340 |
+
"mt-2"
|
341 |
)}>Story generation - please choose a LLM provider:</Label>
|
342 |
<Select
|
343 |
onValueChange={(value: string) => {
|
src/app/interface/settings-dialog/section-title.tsx
CHANGED
@@ -9,7 +9,7 @@ export function SectionTitle({ className, children }: {
|
|
9 |
return (
|
10 |
<div className={cn(
|
11 |
`flex flex-col items-center justify-center`,
|
12 |
-
`mt-6 pt-
|
13 |
`border-t border-t-stone-400`,
|
14 |
`text-xl font-semibold text-zinc-900`,
|
15 |
className
|
|
|
9 |
return (
|
10 |
<div className={cn(
|
11 |
`flex flex-col items-center justify-center`,
|
12 |
+
`mt-6 pt-4 pb-1 w-full`,
|
13 |
`border-t border-t-stone-400`,
|
14 |
`text-xl font-semibold text-zinc-900`,
|
15 |
className
|