Skip to content

Commit

Permalink
Merge pull request #12 from Exar04/main
Browse files Browse the repository at this point in the history
search bar was aligned
  • Loading branch information
Exar04 authored Oct 12, 2023
2 parents d2c3f17 + 5cb2f67 commit 5f05f7d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<h1>Simple To-Do List</h1>
<ul class="todo-list" id="todo-list">
</ul>
<input type="text" id="new-task" placeholder="New task">
<input type="text" id="new-task" placeholder="New task" class="ToDoSearchBar">
<button id="add-button">Add Task</button>
</div>
</body>
Expand Down
6 changes: 6 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,10 @@ h1 {

#add-button:hover {
background-color: #0056b3;
}

.ToDoSearchBar{
width: 375px;
padding: 10px;
margin: 5px 0;
}

0 comments on commit 5f05f7d

Please sign in to comment.