]> Stephen's Gitweb - reasonableweather.git/commitdiff
Add some padding between the day names and the weather icons
authorStephen Jianu <stephen@stephenjianu.com>
Sun, 30 Mar 2025 21:11:44 +0000 (16:11 -0500)
committerStephen Jianu <stephen@stephenjianu.com>
Sun, 30 Mar 2025 21:11:44 +0000 (16:11 -0500)
index.php

index 5bf16783097889741091f8426e8450d661c42026..62217aa3f998a1a83f0a0e69e335736e132f7834 100644 (file)
--- a/index.php
+++ b/index.php
@@ -34,7 +34,7 @@
                $precipSum = $json["daily"]["precipitation_sum"][$i];
                echo "<div style=\"min-width: 12%; display: inline-block;\">\n";
                echo "<h3>\n";
-               echo "".date('l', strtotime($json["daily"]["time"][$i]))."<br><i style=\"font-size: 32px;\" class=\"wi ".$image."\"></i>\n";
+               echo "".date('l', strtotime($json["daily"]["time"][$i]))."<br><br><i style=\"font-size: 32px;\" class=\"wi ".$image."\"></i>\n";
                echo "</h3>\n";
                echo "<span style=\"font-weight: bold;\">".$description."</span><br>\n";
                echo "<span style=\"font-weight: bold;\">High: </span>".$tempHigh."&deg; F\n";