This commit is contained in:
@@ -117,7 +117,7 @@ function NoteContentModal({
|
||||
onClick={onClose}
|
||||
>
|
||||
<div
|
||||
className="bg-white rounded-md shadow-lg w-full max-w-3xl max-h-[85vh] flex flex-col overflow-hidden"
|
||||
className="bg-surface rounded-md shadow-lg w-full max-w-3xl max-h-[85vh] flex flex-col overflow-hidden"
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
<header className="flex items-center justify-between border-b border-hairline px-4 py-3 flex-shrink-0">
|
||||
@@ -157,7 +157,7 @@ function ModeSelect({
|
||||
}) {
|
||||
return (
|
||||
<select
|
||||
className="border border-hairline rounded text-2xs px-1 py-0.5 bg-white focus:outline-none focus:ring-1 focus:ring-accent"
|
||||
className="border border-hairline rounded text-2xs px-1 py-0.5 bg-canvas focus:outline-none focus:ring-1 focus:ring-accent"
|
||||
value={mode}
|
||||
onChange={(e) => onChange(e.target.value as 'search' | 'inject')}
|
||||
>
|
||||
@@ -412,7 +412,7 @@ export function SubscriptionsPanel({ currentUserId }: { currentUserId: string })
|
||||
<section>
|
||||
<h3 className="text-[13px] font-semibold text-slate-800 mb-2">Discover</h3>
|
||||
<input
|
||||
className="border border-hairline rounded px-2 py-1.5 mb-3 w-full text-[13px] bg-white focus:outline-none focus:ring-1 focus:ring-accent placeholder:text-slate-400"
|
||||
className="border border-hairline rounded px-2 py-1.5 mb-3 w-full text-[13px] bg-canvas focus:outline-none focus:ring-1 focus:ring-accent placeholder:text-slate-400"
|
||||
placeholder="Search by title, tag, body…"
|
||||
value={q}
|
||||
onChange={(e) => setQ(e.target.value)}
|
||||
|
||||
Reference in New Issue
Block a user