Skip to content

Commit 582377c

Browse files
committed
Refactor TagInput and Settings components for improved UI and functionality
- Updated TagInput styles for better visual consistency with the app theme. - Added a new "bindings" section in the Settings component to manage conversation routing. - Removed unused binding-related state and functions from ChannelsSection to streamline the code. - Enhanced messaging platform description for clarity on configuration and binding creation.
1 parent 5f0e2ad commit 582377c

2 files changed

Lines changed: 321 additions & 277 deletions

File tree

interface/src/components/TagInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ export function TagInput({value, onChange, placeholder, className}: TagInputProp
4242

4343
return (
4444
<div className={className}>
45-
<div className="flex flex-wrap gap-2 p-2 border border-paper-darker rounded-md bg-paper-dark min-h-[42px] focus-within:ring-2 focus-within:ring-ink-faint/20">
45+
<div className="flex flex-wrap gap-2 p-2 border border-app-line/50 rounded-md bg-app-darkBox/30 min-h-[42px] focus-within:border-accent/50">
4646
{value.map((tag) => (
4747
<div
4848
key={tag}
49-
className="flex items-center gap-1 px-2 py-1 bg-paper-darker border border-paper-darkest rounded text-sm text-ink"
49+
className="flex items-center gap-1 px-2 py-1 bg-app-box border border-app-line/30 rounded text-sm text-ink"
5050
>
5151
<span>{tag}</span>
5252
<button

0 commit comments

Comments
 (0)