Commit 75710500 by Ajmal.S

minor corrections and style changes

parent 62561d01
...@@ -18,7 +18,7 @@ function App() { ...@@ -18,7 +18,7 @@ function App() {
{ {
id: 2, id: 2,
text: 'Todo 2', text: 'Todo 2',
isEdit: true, isEdit: false,
isComplete: false isComplete: false
}, },
{ {
......
...@@ -2,24 +2,24 @@ import React from 'react' ...@@ -2,24 +2,24 @@ import React from 'react'
const TodoItem = ({ id, children, edit, complete, onEdit, onComplete, onClick }) => { const TodoItem = ({ id, children, edit, complete, onEdit, onComplete, onClick }) => {
const className = `todos ${complete ? 't-complete' : ''}` const className = `${complete ? 't-complete' : ''}`
const padding = `task-body-content ${!edit ? 'custom-padding' : ''}`
return ( return (
<div className="task"> <div className="task">
<div className="task-body-content"> <div className={padding}>
{!edit ? ( {!edit ? (
<div style={{ display: 'flex' }}> <div style={{ display: 'flex' }}>
<input type='checkbox' checked={complete} onChange={(e) => onComplete(id, e.target.checked)}></input> <input type='checkbox' style={{ marginRight: '6px' }} checked={complete} onChange={(e) => onComplete(id, e.target.checked)}></input>
<span style={{ cursor: 'pointer' }} className={className} onClick={() => onClick(id, children)}>{children}</span> <span style={{ cursor: 'pointer' }} className={className} onClick={() => onClick(id, children)}>{children}</span>
</div> </div>
) : ) :
<form> <form onSubmit={(e) => onEdit(id, e.target.editInput.value)}>
<div className='add-form'> <div className='add-form'>
<div className='form-control'> <div className='form-control'>
<input type='input' defaultValue={children} onChange={(e) => onEdit(id, e.target.value)} <input type='input' defaultValue={children} name='editInput' />
/>
</div> </div>
<button type='button' className='btn'>Save</button> <button type='submit' className='btn'>Save</button>
</div> </div>
</form> </form>
} }
......
body { body {
font-family: sans-serif; font-family: sans-serif;
background-color: #fff; background-color: #fff;
color: #000;
font-size: 15px; font-size: 15px;
box-sizing: border-box; box-sizing: border-box;
} }
.btn { .btn {
display: inline-block; background-color: transparent;
background-color: #fff;
color: #000;
border: 1px solid #ccc; border: 1px solid #ccc;
padding: 10px 12px; padding: 10px 12px;
margin: 5px 12px; margin: 5px 12px;
border-radius: 5px; border-radius: 5px;
cursor: pointer;
text-decoration: none;
font-size: 15px; font-size: 15px;
height: 35px; height: 38px;
line-height: 0px;
} }
.add-form { .add-form {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
margin: 10px 10px 10px 5px; margin: 10px;
} }
.form-control input { .form-control input {
width: 18rem; width: 18rem;
height: 26px; height: 30px;
margin: 5px 2px 3px 3px; margin: 5px 2px 3px 3px;
padding: 3px 7px; padding: 3px 7px;
font-size: 15px; font-size: 15px;
...@@ -41,24 +37,25 @@ body { ...@@ -41,24 +37,25 @@ body {
margin: 15rem auto; margin: 15rem auto;
border-bottom: 1px solid rgba(0, 0, 0, .125); border-bottom: 1px solid rgba(0, 0, 0, .125);
border-radius: 4px; border-radius: 4px;
color: #000;
box-shadow: -1px 2px 8px 0px #38383829; box-shadow: -1px 2px 8px 0px #38383829;
background-color: #fff; background-color: #fff;
} }
.task-head { .task-head {
border-bottom: 1px solid #ffffff61; border-bottom: 1px solid #ffffff61;
padding: 10px; padding: 13px;
text-align: center; text-align: center;
box-shadow: 1px 3px 1px #18181812; box-shadow: 1px 3px 1px #18181812;
margin-bottom: 5px;
} }
.task-body-content { .task-body-content {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
border-bottom: 1px solid #ccc; border-top: 1px solid #ccc;
padding: 4px 6px; }
.custom-padding {
padding: 10px 6px;
} }
.t-complete { .t-complete {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment