This commit is contained in:
davidwells 2018-06-11 22:34:57 -07:00
parent 51d2330169
commit c34d15a489
3 changed files with 13 additions and 4 deletions

View file

@ -33,14 +33,16 @@
padding-top: 10px;
width: 600px;
}
.todo-create-wrapper {
margin-bottom: 20px;
}
.todo-create-input {
padding: 12px 10px;
font-size: 14px;
padding: 11px 15px;
min-width: 300px;
display: inline-block;
box-shadow: 0px 0px 0px 2px rgba(69, 101, 173, 0.1);
box-shadow: 0px 0px 0px 2px rgba(120, 130, 152, 0.25);
border: none;
outline: none;
transition: all 0.3s ease;
@ -55,6 +57,12 @@
display: flex;
align-items: center;
justify-content: space-between;
min-height: 43px;
}
.todo-list-title {
font-size: 17px;
font-weight: 500;
color: #5a5a5a;
}
@keyframes App-logo-spin {

View file

@ -123,7 +123,7 @@ class App extends Component {
}
return (
<div key={i} className='todo-item'>
<div>
<div className='todo-list-title'>
{data.title}
</div>
{deleteButton}

View file

@ -1,7 +1,7 @@
body {
margin: 0;
padding: 0;
font-family: sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
button {
@ -21,6 +21,7 @@ button {
transition-property: background-color,color,border,box-shadow;
outline: 0;
cursor: pointer;
margin-bottom: 3px;
}
button:focus, button:hover {