header looks okay
parent
79128db4f2
commit
4842b117b4
@ -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 />;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue