change requests

This commit is contained in:
EthanHealy01 2025-08-18 17:15:56 +01:00
parent 2a16217b67
commit 306a89930a
3 changed files with 4 additions and 2 deletions

View File

@ -102,5 +102,3 @@ export const TextInput = forwardRef<HTMLInputElement, TextInputProps>(({
</div> </div>
); );
}); });
TextInput.displayName = 'TextInput';

View File

@ -57,6 +57,7 @@ export default function ToolPanel() {
<div <div
style={{ style={{
backgroundColor: 'var(--tool-panel-search-bg)', backgroundColor: 'var(--tool-panel-search-bg)',
borderBottom: '1px solid var(--tool-panel-search-border-bottom)',
padding: '0.75rem 1rem', padding: '0.75rem 1rem',
marginBottom: (leftPanelView === 'toolContent') ? '1rem' : 0, marginBottom: (leftPanelView === 'toolContent') ? '1rem' : 0,
}} }}

View File

@ -140,6 +140,7 @@
/* Tool panel search bar background colors */ /* Tool panel search bar background colors */
--tool-panel-search-bg: #EFF1F4; --tool-panel-search-bg: #EFF1F4;
--tool-panel-search-border-bottom: #EFF1F4;
/* container */ /* container */
--landing-paper-bg: var(--bg-surface); --landing-paper-bg: var(--bg-surface);
@ -289,6 +290,8 @@
/* Tool panel search bar background colors (dark mode) */ /* Tool panel search bar background colors (dark mode) */
--tool-panel-search-bg: #1F2329; --tool-panel-search-bg: #1F2329;
--tool-panel-search-border-bottom: #4B525A;
} }
/* Dropzone drop state styling */ /* Dropzone drop state styling */