Update search input to full width and bump Android versionCode to 96

This commit is contained in:
MartinBraquet
2026-04-30 19:54:57 +02:00
parent b43e42d676
commit 185eda9106
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ android {
applicationId "com.compassconnections.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 95
versionCode 96
versionName "1.21.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {

View File

@@ -167,7 +167,7 @@ export const Search = forwardRef<
ref={ref}
value={keywordInput}
placeholder={placeholder}
className={'w-48 sm:w-96'}
className={'w-full sm:w-96'}
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
setKeywordInput(e.target.value)
}}