A React Native app for the ultimate thinking partner.

fix(ui): reduce input box height and padding for single-line appearance

- Reduce vertical padding from 12px to 10px
- Reduce minHeight from 44px to 40px
- Reduce borderRadius from 28px to 24px for more compact look
- Total single-line height now ~40px instead of ~56px

+5 -5
+5 -5
App.tsx
··· 1249 1249 1250 1250 const inputStyles = { 1251 1251 width: '100%', 1252 - minHeight: 44, 1252 + minHeight: 40, 1253 1253 maxHeight: 120, 1254 1254 paddingLeft: 18, 1255 1255 paddingRight: 130, 1256 - paddingTop: 12, 1257 - paddingBottom: 12, 1258 - borderRadius: 28, 1256 + paddingTop: 10, 1257 + paddingBottom: 10, 1258 + borderRadius: 24, 1259 1259 color: colorScheme === 'dark' ? '#000000' : '#FFFFFF', // Inverted: black text in dark mode 1260 1260 fontFamily: 'Lexend_400Regular', 1261 1261 fontSize: 16, ··· 1992 1992 left: 0, 1993 1993 right: 0, 1994 1994 bottom: 0, 1995 - borderRadius: 28, 1995 + borderRadius: 24, 1996 1996 zIndex: -1, 1997 1997 }, 1998 1998 inputWrapper: {