Compare commits

...
2 Commits
Author SHA1 Message Date
Jannik cee3d24582 style: fix custom cursor on labels 2026-06-04 12:56:55 +02:00
Jannik b1b77c1714 style: make settings page wider for better prompt editing 2026-06-04 12:54:15 +02:00
2 changed files with 8 additions and 4 deletions
+5 -1
View File
@@ -36,7 +36,11 @@
html, body, #root {
height: 100%;
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 {
+3 -3
View File
@@ -163,7 +163,7 @@ export function SettingsPage() {
return (
<div className="min-h-screen">
<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
type="button"
onClick={() => navigate("/")}
@@ -176,7 +176,7 @@ export function SettingsPage() {
</div>
</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">
<section>
<h2 className="text-sm font-semibold text-fg mb-3 flex items-center gap-2">
@@ -376,7 +376,7 @@ export function SettingsPage() {
</select>
<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]}
onChange={(e) => handlePromptChange(e.target.value)}
spellCheck={false}