mirror of
https://github.com/github/awesome-copilot.git
synced 2026-08-24 18:01:41 +00:00
19 lines
1.1 KiB
Markdown
19 lines
1.1 KiB
Markdown
# Refine an existing interface
|
|
|
|
Polish improves the interface that exists; it does not conceal a redesign. Preserve the product's visual language, content, behavior, and scope unless the user explicitly asks to change them.
|
|
|
|
## Inspect the real result
|
|
|
|
Render or run the interface when possible. Check representative desktop and mobile sizes for web work, or the relevant device class for native work. Judge the rendered result rather than the source code alone.
|
|
|
|
Prioritize the largest observable problems:
|
|
|
|
- unclear hierarchy or competing primary actions;
|
|
- inconsistent spacing, typography, color, radius, or icon treatment;
|
|
- clipping, overlap, overflow, distorted images, or awkward wrapping;
|
|
- missing hover, focus, disabled, loading, empty, error, or success feedback;
|
|
- inaccessible controls, weak contrast, or poor keyboard behavior;
|
|
- decorative noise that competes with the task.
|
|
|
|
Fix related issues in one coherent pass. Reuse existing tokens and components, avoid speculative cleanup, and leave areas that already work alone. Confirm the changed surface once more after the fixes.
|