Sfoglia il codice sorgente

immer noch font-size

robert 2 anni fa
parent
commit
243767d18e
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      api/controllers/RequestController.php

+ 2 - 1
api/controllers/RequestController.php

@@ -243,7 +243,8 @@ class RequestController
 			}
 		}
 		// header("Location: {$_SERVER['HTTP_REFERER']}");
-		echo "<html><body><pre style=\"font-size: 20pt;\">" . $this->printFormat($d) . "</pre><br/>";
+		echo '<html><head><meta name="viewport" content="width=device-width, initial-scale=1"></head>';
+		echo "<body><pre>" . $this->printFormat($d) . "</pre><br/>";
 		echo "<form action=\"" . $_SERVER['HTTP_REFERER'] . "\" method=\"POST\"><input type=\"submit\" value=\"Nächster Kunde\"/></form></body></html>";
 		exit();
 	}