mirror of https://github.com/portainer/portainer
fix(UI): EE-4937 low resolution hides add container button (#8401)
parent
5847c2b8ef
commit
9d103ffbeb
|
@ -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
|
||||||
|
|
|
@ -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..."
|
||||||
|
|
Loading…
Reference in New Issue