diff options
-rw-r--r-- | pages/money.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/money.inc b/pages/money.inc index f4ab9fa..69e732c 100644 --- a/pages/money.inc +++ b/pages/money.inc @@ -440,7 +440,7 @@ require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc'; <div class="progress-bar bg-danger" style="width:<?= $part1 * 100 ?>%"></div> <div class="progress-bar bg-success" style="width:<?= $part2 * 100 ?>%"></div> </div> - <p style="text-align: center; margin-top: 5px;" class="<?= $allAccounts > $minimumRaindrops ? "" : "bold text-danger" ?>">€<?= number_format($difference, 2, '.', ',') ?><?php if ($allAccounts > $minimumCloudburst): ?> (<?= round($part2 * 100, 2) ?>%)<?php endif; ?> <?= $allAccounts > $minimumRaindrops ? "over" : "under" ?> the minimum</p> + <p style="text-align: center; margin-top: 5px;" class="<?= $allAccounts > $minimumRaindrops ? "" : "bold text-danger" ?>">€<?= number_format($difference, 2, '.', ',') ?><?php if ($allAccounts > $minimumRaindrops): ?> (<?= round($part2 * 100, 2) ?>%)<?php endif; ?> <?= $allAccounts > $minimumRaindrops ? "over" : "under" ?> the minimum</p> <canvas id="history-raindrops" style="margin-top: 10px; width: 100%; height: 200px; max-height: 100%;"></canvas> <?php |