Compare commits
2
Commits
cba6a173e6
...
cee3d24582
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cee3d24582 | ||
|
|
b1b77c1714 |
+5
-1
@@ -36,7 +36,11 @@
|
|||||||
html, body, #root {
|
html, body, #root {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
font-family: 'Inter', system-ui, sans-serif;
|
font-family: 'Inter', system-ui, sans-serif;
|
||||||
cursor: url('/cursor-default.svg') 4 2, auto;
|
cursor: url('/cursor-default.svg') 4 2, auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
cursor: url('/cursor-default.svg') 4 2, auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
a, button, [role="button"], select, .cursor-pointer {
|
a, button, [role="button"], select, .cursor-pointer {
|
||||||
|
|||||||
@@ -163,7 +163,7 @@ export function SettingsPage() {
|
|||||||
return (
|
return (
|
||||||
<div className="min-h-screen">
|
<div className="min-h-screen">
|
||||||
<header className="sticky top-0 z-20 bg-bg/70 backdrop-blur border-b border-border">
|
<header className="sticky top-0 z-20 bg-bg/70 backdrop-blur border-b border-border">
|
||||||
<div className="max-w-md mx-auto px-4 h-14 flex items-center gap-2">
|
<div className="max-w-3xl mx-auto px-4 h-14 flex items-center gap-2">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onClick={() => navigate("/")}
|
onClick={() => navigate("/")}
|
||||||
@@ -176,7 +176,7 @@ export function SettingsPage() {
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main className="max-w-md mx-auto px-4 mt-16">
|
<main className="max-w-3xl mx-auto px-4 mt-16">
|
||||||
<div className="card p-6 space-y-6">
|
<div className="card p-6 space-y-6">
|
||||||
<section>
|
<section>
|
||||||
<h2 className="text-sm font-semibold text-fg mb-3 flex items-center gap-2">
|
<h2 className="text-sm font-semibold text-fg mb-3 flex items-center gap-2">
|
||||||
@@ -376,7 +376,7 @@ export function SettingsPage() {
|
|||||||
</select>
|
</select>
|
||||||
|
|
||||||
<textarea
|
<textarea
|
||||||
className="input w-full min-h-[300px] text-xs font-mono p-3 leading-relaxed"
|
className="input w-full min-h-[500px] text-xs font-mono p-3 leading-relaxed"
|
||||||
value={editingPrompts[activePromptTab]}
|
value={editingPrompts[activePromptTab]}
|
||||||
onChange={(e) => handlePromptChange(e.target.value)}
|
onChange={(e) => handlePromptChange(e.target.value)}
|
||||||
spellCheck={false}
|
spellCheck={false}
|
||||||
|
|||||||
Reference in New Issue
Block a user