diff --git a/dashboard/components/App.js b/dashboard/components/App.js index 7438f9e..ac271d1 100644 --- a/dashboard/components/App.js +++ b/dashboard/components/App.js @@ -347,11 +347,11 @@ export function App() {
${loading ? html` -
+
Loading sessions...
` : error ? html` -
+

Failed to connect to API

${error}

diff --git a/dashboard/components/MessageBubble.js b/dashboard/components/MessageBubble.js index 88956d5..fbf65b2 100644 --- a/dashboard/components/MessageBubble.js +++ b/dashboard/components/MessageBubble.js @@ -17,7 +17,7 @@ export function MessageBubble({ msg, userBg, compact = false, formatTime }) { const maxW = compact ? 'max-w-[92%]' : 'max-w-[86%]'; return html` -
+
${number}. diff --git a/dashboard/components/QuestionBlock.js b/dashboard/components/QuestionBlock.js index 3bd9142..5561bd2 100644 --- a/dashboard/components/QuestionBlock.js +++ b/dashboard/components/QuestionBlock.js @@ -73,12 +73,12 @@ export function QuestionBlock({ questions, sessionId, status, onRespond }) { onBlur=${() => setFocused(false)} placeholder="Type a response..." rows="1" - class="flex-1 resize-none overflow-hidden rounded-xl border border-selection/75 bg-bg/70 px-3 py-2 text-sm text-fg placeholder:text-dim focus:outline-none" + class="flex-1 resize-none overflow-hidden rounded-xl border border-selection/75 bg-bg/70 px-3 py-2 text-sm text-fg transition-colors duration-150 placeholder:text-dim focus:outline-none" style=${{ minHeight: '38px', maxHeight: '150px', borderColor: focused ? meta.borderColor : undefined }} />