diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-05-19 22:47:57 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-05-19 22:47:57 -0600 |
commit | 16f9da05e58043a0944356e5637a18d04c0aa212 (patch) | |
tree | ad500d57a2b186cfd8da79e45d75731eb2862c93 | |
parent | 3664286506f673737c0784b9cfd494cda1dc4618 (diff) |
Fix spacing in assets table delete button
-rw-r--r-- | srv/src/api/tpl/assets.html | 6 |
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> |