I’m making a todo list app using react and chakra ui.
I want to make the input and the button on the same line.
This is what i get: photo
I want to make something like this: photo
My Code:
App.js:
JavaScript
x
16
16
1
import "./App.css";
2
import { ChakraProvider } from "@chakra-ui/react";
3
import Todo from "./components/Todo";
4
5
function App() {
6
return (
7
<ChakraProvider>
8
<div className="App">
9
<Todo />
10
</div>
11
</ChakraProvider>
12
);
13
}
14
15
export default App;
16
Todo.js:
JavaScript
1
35
35
1
import { Container, Box, Heading, Input, Button } from "@chakra-ui/react";
2
import { MdAdd } from "react-icons/md";
3
4
function Todo() {
5
return (
6
<Container
7
maxW="4xl"
8
minHeight="100vh"
9
display="flex"
10
alignItems="center"
11
justifyContent="center"
12
>
13
<Box
14
boxShadow="base"
15
rounded="lg"
16
padding={10}
17
background="white"
18
width="100%"
19
>
20
<Heading as="h1" size="md" textAlign="center">
21
Todo List App
22
</Heading>
23
<Box display="flex" alignItems="center" justifyContent="space-between">
24
<Input placeholder="New Task" marginTop={5} size="lg" />
25
<Button colorScheme="blue" rightIcon={<MdAdd />} margin={0}>
26
Add
27
</Button>
28
</Box>
29
</Box>
30
</Container>
31
);
32
}
33
34
export default Todo;
35
Advertisement
Answer
removing the margin top from input should fix it:
JavaScript
1
5
1
Here
2
||
3
4
<Input placeholder="New Task" marginTop={5} size="lg" />
5