style: streamline inputs and selects with more visible borders

- Increase --border opacity in both light and dark modes
- Harmonize Input and Select components with consistent rounded-lg corners
- Replace native selects in MainConverter with styled Select component
This commit is contained in:
2026-02-23 07:56:16 +01:00
parent 9a95e97150
commit d9315ecf7d
3 changed files with 7 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
<input
type={type}
className={cn(
'flex h-10 w-full rounded-xl border border-border bg-input px-4 py-2',
'flex h-10 w-full rounded-lg border border-border bg-input px-4 py-2',
'text-sm ring-offset-background file:border-0 file:bg-transparent',
'file:text-sm file:font-medium placeholder:text-muted-foreground',
'focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary/50 focus-visible:border-primary/50',