Skip to content

Commit

Permalink
changed padding in edit
Browse files Browse the repository at this point in the history
  • Loading branch information
noel-friedrich committed Feb 18, 2024
1 parent b987d6e commit f159825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/commands/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terminal.addCommand("edit", async function(args) {
textarea.style.background = "var(--background)"
textarea.style.color = "var(--foreground)"
textarea.style.marginTop = `calc(var(--font-size) * 0.8)`
textarea.style.padding = `calc(var(--font-size) * 0.5)`
textarea.style.padding = `calc(var(--font-size) * 0.8)`
textarea.style.border = "1px solid var(--foreground)"
textarea.style.borderRadius = `calc(var(--font-size) * 0.5)`

Expand Down

0 comments on commit f159825

Please sign in to comment.