Skip to content

Commit

Permalink
fix: inline items in subscription form out of place (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellite authored Aug 11, 2024
1 parent fa3ed7c commit 3f33ba0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ class="one-third" value="<?= $settings['smtp_port'] ?>" />
</div>
<h3><?= translate('cronjobs', $i18n) ?></h3>
<div>
<div class="inline">
<div class="inline-row">
<input type="button" value="Check for Updates" class="button tiny mobile-grow" onclick="executeCronJob('checkforupdates')">
<input type="button" value="Send Notifications" class="button tiny mobile-grow" onclick="executeCronJob('sendnotifications')">
<input type="button" value="Send Cancellation Notifications" class="button tiny mobile-grow" onclick="executeCronJob('sendcancellationnotifications')">
Expand All @@ -363,7 +363,7 @@ class="one-third" value="<?= $settings['smtp_port'] ?>" />
<input type="button" value="Update Exchange Rates" class="button tiny mobile-grow" onclick="executeCronJob('updateexchange')">
<input type="button" value="Update Next Payments" class="button tiny mobile-grow" onclick="executeCronJob('updatenextpayment')">
</div>
<div class="inline">
<div class="inline-row">
<textarea id="cronjobResult" class="thin" readonly></textarea>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion includes/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
$version = "v2.22.0";
$version = "v2.22.1";
?>
2 changes: 1 addition & 1 deletion styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ header #avatar {
flex-basis: 50%;
}

.inline {
.inline-row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
Expand Down

0 comments on commit 3f33ba0

Please sign in to comment.