Fix public page width on narrow mobile screens#32
Merged
Conversation
Contributor
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
apiops-cycles-method | 4e3a61e | Commit Preview URL Branch Preview URL |
Jul 23 2026, 08:10 PM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
content="width=device-width, initial-scale=1"inapps/site/src/layouts/BaseLayout.astroso pages render at device width on narrow screens.min-width: 0; width: 100%;to.global-site-shellandmin-width: 0;to.global-site-shell > maininapps/site/src/styles/global.css.apps/site/test/design-system-route.integration.test.mjsthat asserts the viewport meta and the new global CSS rules are present.Testing
node --test apps/site/test/design-system-route.integration.test.mjsand the new regression test passed (all assertions in that file succeeded).npm run test:astro-integration, which exercised many integration tests (15 passed, 7 failed) where the failures are due to missingdistartifacts becausenpm run buildcould not complete in this environment.npm run build, which failed because Astro requires Node.js>=22.12.0while the environment provides Node.js20.20.2, so a production build could not be produced in this runner.npm run lint, which surfaced pre-existing type/lint issues (reported errors and warnings) not introduced by this change.Codex Task