diff --git a/components/QuickSearch.tsx b/components/QuickSearch.tsx index dd80f3bd..f99e8701 100644 --- a/components/QuickSearch.tsx +++ b/components/QuickSearch.tsx @@ -144,7 +144,7 @@ export default function QuickSearch({ style }: Props) { { if ('key' in event) { diff --git a/components/Search.tsx b/components/Search.tsx index 67720f2b..ec76842b 100644 --- a/components/Search.tsx +++ b/components/Search.tsx @@ -102,10 +102,7 @@ export default function Search({ query, total, style }: Props) { onBlur={() => setInputFocused(false)} onChangeText={typingCallback} placeholder="Search libraries..." - style={[ - tw`h-12.5 font-sans pr-30 flex flex-1 rounded-md border-2 border-palette-gray5 bg-palette-gray6 p-4 text-xl text-white -outline-offset-2 dark:border-default dark:bg-dark`, - !isSmallScreen && tw`pl-11`, - ]} + style={tw`h-12.5 font-sans pr-30 flex flex-1 rounded-md border-2 border-palette-gray5 bg-palette-gray6 p-4 pl-11 text-xl text-white -outline-offset-2 dark:border-default dark:bg-dark`} defaultValue={search} placeholderTextColor={tw`text-palette-gray4`.color as ColorValue} />