Skip to content

Commit

Permalink
feat: 💄 make descriptions bigger
Browse files Browse the repository at this point in the history
Co-authored by: Style wizard <coxender@users.noreply.github.com>
  • Loading branch information
nstringham committed Dec 23, 2023
1 parent 64637ac commit c2009ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ <h2>Add Tasks</h2>
</label>
<label>
Description:
<textarea name="description" placeholder="Describe the task..."></textarea>
<textarea name="description" placeholder="Describe the task..." rows="5" cols="80"></textarea>
</label>
<button type="submit">Add task</button>
</form>
Expand Down
2 changes: 2 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ function updateTasks() {
class="task-description"
@change="${(event: Event) => (task.description = (event.target as HTMLTextAreaElement).value)}"
.value="${task.description}"
rows="5"
cols="80"
></textarea>
</div>
`
Expand Down

0 comments on commit c2009ac

Please sign in to comment.