Make remove button smaller

This commit is contained in:
2022-12-20 01:16:05 +01:00
parent 3503a17e04
commit 83383634b6
2 changed files with 2 additions and 4 deletions

View File

@ -33,9 +33,8 @@
{# Remove feed button. #}
<div class="btn-group" role="group">
<form action="/remove" method="post">
<button class="btn btn-danger" type="submit" name="feed_url" value="{{ feed.url }}"
onclick="return confirm('Are you sure you want to delete this feed?')">
Remove feed
<button class="btn btn-danger btn-sm" name="feed_url" value="{{ feed.url }}"
onclick="return confirm('Are you sure you want to delete this feed?')">Remove
</button>
</form>
</div>