fix: use lighter background for tool detail modal
- Change modal from bg-background to bg-white/dark:bg-gray-900 - Makes modal stand out clearly from the app background - Provides better visual hierarchy 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
e437f69333
commit
97db95243a
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ export function ToolsSidebar(): React.ReactElement {
|
|||
tabIndex={0}
|
||||
aria-label="Close modal"
|
||||
>
|
||||
<div className="relative mx-4 max-h-[90vh] w-full max-w-2xl overflow-y-auto rounded-lg border border-border bg-background p-6 shadow-xl">
|
||||
<div className="relative mx-4 max-h-[90vh] w-full max-w-2xl overflow-y-auto rounded-lg border border-border bg-white dark:bg-gray-900 p-6 shadow-xl">
|
||||
{/* Close button */}
|
||||
<button
|
||||
type="button"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue