-
Notifications
You must be signed in to change notification settings - Fork 0
Update starlight docs 2 #29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 33 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
c758d35
geist and ibm fonts
mikemazara 1be1140
sidebar and nav tabs
mikemazara 65b26da
phase 3 and code cleanup
mikemazara 81d99f5
fix inconsistencies
mikemazara 2e2b923
fix script pattern to regenerate dist
mikemazara 5eeefdc
footer, and alerts
mikemazara f7a14e4
bcrums, footer, sidebar
mikemazara 22c7b3d
table behave
mikemazara a089ea4
min w for mobile
mikemazara 4634361
fix lint
mikemazara 314f7d3
a11y
mikemazara 5a774b1
table and responsive
mikemazara 45697d8
table and tests
mikemazara 7d850de
merge 1
mikemazara 5d6121a
pt 2
mikemazara 7e8a422
Match NDS hover, code chip, and footer logo alignment.
mikemazara 9151e89
Merge branch 'update-starlight-docs' into update-starlight-docs-2
mikemazara dd65971
Match landing hover, guide filters, and 404 to the Figma review.
mikemazara e76c00e
Match Figma TOC bar, nav underline, and chrome sizes.
mikemazara be918ec
Merge update-starlight-docs into update-starlight-docs-2.
mikemazara 2d4e3a7
Match mobile hero, guide filters, and homepage cards to Figma.
mikemazara c2db51d
Merge branch 'update-starlight-docs' into update-starlight-docs-2
mikemazara bf49132
Keep the 2px tab underline and a named footer logo.
mikemazara e514c5e
Drop the 12px homepage card override.
mikemazara 3c5a6a9
Hide the nested code-frame titlebar inside tab panels.
mikemazara ed593e8
Merge branch 'update-starlight-docs' into update-starlight-docs-2
mikemazara c943e7d
Format the tabbed-code header selector.
mikemazara 79b30ca
Merge branch 'update-starlight-docs' into update-starlight-docs-2
mikemazara d977407
update links
mikemazara 654d561
Merge remote-tracking branch 'origin/main' into update-starlight-docs
mikemazara c070ebd
Merge branch 'update-starlight-docs' into update-starlight-docs-2
mikemazara 8dbf24e
align icon
mikemazara ed171b4
Merge branch 'update-starlight-docs' into update-starlight-docs-2
mikemazara 201bbd6
Untrack .cursor and ignore it
mikemazara 5c85456
Merge remote-tracking branch 'origin/main' into update-starlight-docs-2
mikemazara File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "plugins": { | ||
| "figma": { | ||
| "enabled": true | ||
| } | ||
| } | ||
| } |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| import { expect, test } from '@playwright/test'; | ||
|
|
||
| test.describe('README screenshots', () => { | ||
| test.skip( | ||
| !process.env.SCREENSHOTS, | ||
| 'set SCREENSHOTS=1 to regenerate README screenshots', | ||
| ); | ||
|
|
||
| test('capture light and dark homepage screenshots', async ({ page }) => { | ||
| await page.setViewportSize({ width: 1440, height: 900 }); | ||
| await page.goto('/'); | ||
|
|
||
| for (const theme of ['light', 'dark'] as const) { | ||
| await page | ||
| .locator('html') | ||
| .evaluate((el, next) => el.setAttribute('data-theme', next), theme); | ||
| await expect(page.locator('.hero')).toBeVisible(); | ||
| await page.screenshot({ | ||
| path: `../.github/screenshots/${theme}.png`, | ||
| }); | ||
| } | ||
| }); | ||
| }); |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.