summaryrefslogtreecommitdiff
path: root/srv/src
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-05-19 22:47:57 -0600
committerBrian Picciano <mediocregopher@gmail.com>2022-05-19 22:47:57 -0600
commit16f9da05e58043a0944356e5637a18d04c0aa212 (patch)
treead500d57a2b186cfd8da79e45d75731eb2862c93 /srv/src
parent3664286506f673737c0784b9cfd494cda1dc4618 (diff)
Fix spacing in assets table delete button
Diffstat (limited to 'srv/src')
-rw-r--r--srv/src/api/tpl/assets.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/srv/src/api/tpl/assets.html b/srv/src/api/tpl/assets.html
index 5ed6515..b8d51a2 100644
--- a/srv/src/api/tpl/assets.html
+++ b/srv/src/api/tpl/assets.html
@@ -32,7 +32,11 @@
<tr>
<td><a href="{{ AssetURL . }}" target="_blank">{{ . }}</a></td>
<td>
- <form action="{{ BlogURL "assets/" }}{{ . }}?method=delete" method="POST">
+ <form
+ action="{{ BlogURL "assets/" }}{{ . }}?method=delete"
+ method="POST"
+ style="margin-bottom: 0;"
+ >
{{ $csrfFormInput }}
<input type="submit" value="Delete" />
</form>