fix # of updates needed text overflow if > 99

This commit is contained in:
ehpersonal38
2023-05-27 21:44:58 -04:00
parent 88ccda11f3
commit 509a63e4f4
+2 -1
View File
@@ -42,13 +42,14 @@ if(!isset($_SESSION['behind'])) {
$sum = $num1 + $num2; $sum = $num1 + $num2;
$_SESSION['behind'] = $sum; $_SESSION['behind'] = $sum;
} }
}
if(isset($_SESSION['behind'])&&intval($_SESSION['behind']) >= 99) {?> if(isset($_SESSION['behind'])&&intval($_SESSION['behind']) >= 99) {?>
<style> <style>
.updatenumber { .updatenumber {
width:30px !important; width:30px !important;
} }
</style> </style>
<?php }} <?php }
if (file_exists('./scripts/thisrun.txt')) { if (file_exists('./scripts/thisrun.txt')) {
$config = parse_ini_file('./scripts/thisrun.txt'); $config = parse_ini_file('./scripts/thisrun.txt');