38adc7d469
* webui: architecture foundation (non-MCP core refactors) * chore: update webui build output
11 lines
273 B
TypeScript
11 lines
273 B
TypeScript
export const BOX_BORDER =
|
|
'border border-border/30 focus-within:border-border dark:border-border/20 dark:focus-within:border-border';
|
|
|
|
export const INPUT_CLASSES = `
|
|
bg-muted/60 dark:bg-muted/75
|
|
${BOX_BORDER}
|
|
shadow-sm
|
|
outline-none
|
|
text-foreground
|
|
`;
|