Skip to content

Commit

Permalink
Bug fixes and update design
Browse files Browse the repository at this point in the history
  • Loading branch information
kathirvel13 committed Dec 15, 2024
1 parent 539db04 commit c5fe71e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,14 @@ <h1>Log Your Expense</h1>
<section id="savings-goals">
<h1>Set Your Savings Goals</h1>
<form id="savings-form">
<label for="goal-name">Gaol Name</label>
<input type="text" id="goal-name" required>
<label for="goal-amount">Goal Amount</label>
<input type="number" id="goal-amount" required>
<div class="form-group">
<label for="goal-name">Goal Name</label>
<input type="text" id="goal-name" required>
</div>
<div class="form-group">
<label for="goal-amount">Goal Amount</label>
<input type="number" id="goal-amount" required>
</div>
<button class="submit-btn" type="submit">Set Goal</button>
</form>
<div id="goal-progress"></div>
Expand Down
2 changes: 1 addition & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ input[type="date"],
input[type="email"],
input[type="password"],
select {
width: 97%;
width: 98%;
padding: 12px;
margin: 5px 0;
border: 1px solid #ccc;
Expand Down

0 comments on commit c5fe71e

Please sign in to comment.