fix(UI): EE-4937 low resolution hides add container button (#8401)

pull/8407/head
cmeng 2023-01-27 09:18:48 +13:00 committed by GitHub
parent 5847c2b8ef
commit 9d103ffbeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ export function SearchBar({
return ( return (
<div <div
className={clsx('searchBar items-center flex min-w-[350px]', className)} className={clsx('searchBar items-center flex min-w-[90px]', className)}
> >
<Search className="searchIcon lucide shrink-0" /> <Search className="searchIcon lucide shrink-0" />
<input <input

View File

@ -155,7 +155,7 @@ export function EnvironmentList({ onClickBrowse, onRefresh }: Props) {
> >
<div className="flex gap-4"> <div className="flex gap-4">
<SearchBar <SearchBar
className="!bg-transparent !m-0" className="!bg-transparent !m-0 !min-w-[350px]"
value={searchBarValue} value={searchBarValue}
onChange={setSearchBarValue} onChange={setSearchBarValue}
placeholder="Search by name, group, tag, status, URL..." placeholder="Search by name, group, tag, status, URL..."