header looks okay

This commit is contained in:
Avraham Sakal
2024-11-07 22:04:25 -05:00
parent 79128db4f2
commit 4842b117b4
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
import Box from "@mui/material/Box"; import Stack from "@mui/material/Stack";
import { SearchRow } from "./SearchRow/SearchRow"; import { SearchRow } from "./SearchRow/SearchRow";
import { TagCloud } from "./TagCloud/TagCloud"; import { TagCloud } from "./TagCloud/TagCloud";
export function SearchHeader() { export function SearchHeader() {
return ( return (
<Box class="search-header"> <Stack class="search-header" spacing={2}>
<SearchRow /> <SearchRow />
<TagCloud /> <TagCloud />
</Box> </Stack>
); );
} }
@@ -1,5 +1,5 @@
import TextField from "@mui/material/TextField"; import TextField from "@mui/material/TextField";
export function SearchTextBox() { export function SearchTextBox() {
return <TextField variant="outlined" label="Search Articles" />; return <TextField variant="outlined" label="Search Articles" fullWidth />;
} }