We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The 404 page for the internal development server (php -S localhost:8080) does not adapt to a mobile view which makes it hard to read.
php -S localhost:8080
The html output just needs an added line to be responsive: <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
Which would give this result:
I am happy to make a patch if necessary as it seems simple enough to just add this line and update the tests.
PHP 8.4.4
Ubuntu 24.10
The text was updated successfully, but these errors were encountered:
I would say go for the patch :)
Sorry, something went wrong.
Fix phpGH-17956 Internal dev server 404 page is not responsive
c118e38
Add a basic viewport html meta tag with responsive mode parameters See: https://developer.mozilla.org/en-US/docs/Web/HTML/Viewport_meta_tag Updated existing tests
ff88701
Successfully merging a pull request may close this issue.
Description
The 404 page for the internal development server (
php -S localhost:8080
) does not adapt to a mobile view which makes it hard to read.The html output just needs an added line to be responsive:
<meta name="viewport" content="width=device-width, initial-scale=1">
Which would give this result:
I am happy to make a patch if necessary as it seems simple enough to just add this line and update the tests.
PHP Version
PHP 8.4.4
Operating System
Ubuntu 24.10
The text was updated successfully, but these errors were encountered: