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
+3 -2
View File
@@ -42,13 +42,14 @@ if(!isset($_SESSION['behind'])) {
$sum = $num1 + $num2;
$_SESSION['behind'] = $sum;
}
if(isset($_SESSION['behind'])&&intval($_SESSION['behind']) >= 99) {?>
}
if(isset($_SESSION['behind'])&&intval($_SESSION['behind']) >= 99) {?>
<style>
.updatenumber {
width:30px !important;
}
</style>
<?php }}
<?php }
if (file_exists('./scripts/thisrun.txt')) {
$config = parse_ini_file('./scripts/thisrun.txt');