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 { TagCloud } from "./TagCloud/TagCloud";
|
||||
|
||||
export function SearchHeader() {
|
||||
return (
|
||||
<Box class="search-header">
|
||||
<Stack class="search-header" spacing={2}>
|
||||
<SearchRow />
|
||||
<TagCloud />
|
||||
</Box>
|
||||
</Stack>
|
||||
);
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
import TextField from "@mui/material/TextField";
|
||||
|
||||
export function SearchTextBox() {
|
||||
return <TextField variant="outlined" label="Search Articles" />;
|
||||
return <TextField variant="outlined" label="Search Articles" fullWidth />;
|
||||
}
|
||||
|
Loading…
Reference in New Issue