fix(ui): stylelint cleanups post-#100 merge#102
Merged
Conversation
Two small cleanups caught by CI stylelint: - src/styles/revamp/claudeDesignWorkspace.css — reorder `font: inherit` before `font-size: 12px` on `.cdw .seg button` so the shorthand doesn't override a more specific declaration above it (declaration-block-no-shorthand-property-overrides). Pre-existing issue in the file; fixing it here keeps the branch green. - src/styles/revamp/workspaceHero.css — drop the `-webkit-backdrop-filter` fallback; the revamp shell uses only the unprefixed `backdrop-filter` and the stylelint config enforces property-no-vendor-prefix. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Adds references to the rehearsal kit, 90-second demo-video storyboard, long-form case study, live-capture pipeline, and enriched Tauri IPC mock. Updates the inventory section + shows the live-vs-mockup split for each of the six screenshot panels. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
Follow-up to #100, which auto-merged while stylelint was still reporting two errors the local pre-commit hook doesn't enforce:
src/styles/revamp/claudeDesignWorkspace.css:299—declaration-block-no-shorthand-property-overrides. Reordersfont: inheritbeforefont-size: 12pxon.cdw .seg button. Pre-existing from feat(ui): render Workspace with Claude Design handoff layout #98; fixing it here so master goes back to green.src/styles/revamp/workspaceHero.css:52—property-no-vendor-prefix. Drops-webkit-backdrop-filter(the revamp shell uses only the unprefixedbackdrop-filter).Also refreshes docs/portfolio/README.md to point at the five supporting artifacts that landed in #100 (case study, rehearsal kit, demo-video storyboard, live-capture pipeline, enriched Tauri mock).
Test plan
pnpm stylelintcleanpnpm ui:typecheckcleanpnpm lintcleancore-repo-healthCI job green (unblocks master)Lockfile rationale
No lockfile changes. This PR touches only
.cssand.mdfiles.🤖 Generated with Claude Code