mirror of
https://github.com/hexastack/hexabot
synced 2025-06-26 18:27:28 +00:00
Update index.tsx
Search Input size increased
This commit is contained in:
parent
0f9205db63
commit
36d9a6969d
@ -172,15 +172,23 @@ export const Subscribers = () => {
|
||||
<EditSubscriberDialog {...getDisplayDialogs(editDialogCtl)} />
|
||||
<PageHeader icon={FolderIcon} title={t("title.subscribers")}>
|
||||
<Grid
|
||||
container
|
||||
justifyContent="flex-end"
|
||||
gap={1}
|
||||
container
|
||||
alignItems="center"
|
||||
flexShrink={0}
|
||||
flexDirection="row"
|
||||
flexWrap="nowrap"
|
||||
width="max-content"
|
||||
width="50%"
|
||||
>
|
||||
<FilterTextfield onChange={onSearch} fullWidth={true} />
|
||||
<FilterTextfield
|
||||
onChange={onSearch}
|
||||
fullWidth={true}
|
||||
sx={{
|
||||
flexGrow: 1, // Allows the input to expand based on available space
|
||||
flexShrink: 1, // Shrinks the input when space is limited (responsive)
|
||||
flexBasis: "auto", // Ensures flexible behavior for the input size
|
||||
}}
|
||||
/>
|
||||
<Input
|
||||
select
|
||||
label={t("label.labels")}
|
||||
|
Loading…
Reference in New Issue
Block a user