scroll-areas
Scroll Areas
Avoid Scroll Areas by Default
Scroll containers inside a layout — panels, drawers, tables, modals with inner overflow — create friction. Users must discover that a region scrolls, manage multiple independent scroll positions simultaneously, and context-switch between scroll areas on the same screen.
Default: let the page scroll. A single page-level scroll is universally understood and requires no discovery. Before introducing an inner scroll area, ask whether the layout can be restructured so the page itself handles the overflow.
Alternatives to inner scroll:
- Pagination or load-more for long lists
- Collapsible sections (accordion) for long detail panels
- A separate page or route for content that would otherwise fill a scroll area
- Progressive disclosure — show less by default, expand on demand
When a Scroll Area Is Justified
Some layouts genuinely require inner scroll:
- Fixed-height sidebars with navigation trees longer than the viewport
- Data tables where the header must remain visible while rows scroll
- Chat or log panels where the stream is continuous and the surrounding layout is fixed
- Code editors or terminal panes embedded in a larger application shell
In these cases, proceed — but apply the constraints below.
One Axis Only
Never create a scroll container that scrolls on both axes simultaneously. Two-axis scroll is disorienting, hard to control precisely, and nearly unusable on touch devices.
/* One axis: vertical */
overflow-y: auto;
overflow-x: hidden;
/* One axis: horizontal (e.g. wide table) */
overflow-x: auto;
overflow-y: hidden;
/* Never */
overflow: auto; /* allows both axes */
If content requires both axes — e.g. a wide table inside a constrained panel — restructure the layout so the table's horizontal scroll is the only scroll in the view, with the page itself not scrolling at that point.
Always User-Controlled
Scroll must never happen automatically without user intent. Specifically:
- No auto-scrolling that moves the viewport without the user initiating it
- No scroll hijacking — do not intercept the native scroll event to animate or pace it artificially
- Scroll-to on load is acceptable only when restoring a previous scroll position (e.g. returning to a list after navigating away)
- Scroll-to for errors or anchors is acceptable as a response to a user action (submitting a form with errors, clicking a table-of-contents link)
Exception: chat and log panels may auto-scroll to the bottom on new content, but only if the user is already at the bottom. If the user has scrolled up to read, do not force them back down — show a "new messages" indicator instead.
Scroll Affordance
Users must be able to tell a region is scrollable before they attempt to scroll it.
- Clip content visually at the edge — a partially visible item signals "there is more"
- Use a subtle scrollbar (not
scrollbar-width: none) so the track is visible - On touch, a partial item at the edge is the primary affordance — ensure the container does not have
overflow: hiddenon the trailing edge
Review Checklist
- Is every inner scroll area genuinely necessary, or can the layout be restructured to use page scroll?
- Does every scroll container scroll on one axis only?
- Is
overflow: auto(two-axis) avoided on all scroll containers? - Is scroll always user-initiated — no hijacking, no forced auto-scroll?
- Is the scrollable region visually apparent (partial content, visible scrollbar)?
- On touch devices, is scroll smooth and native (
-webkit-overflow-scrolling: touchor equivalent)?
More from dembrandt/dembrandt-skills
nielsen-usability-heuristics
UI design and review should apply Nielsen's 10 Usability Heuristics — the foundational principles for evaluating and improving usability. Use when auditing an interface, designing interaction flows, writing error messages, or reviewing any UI for usability issues.
45form-design
Forms have three layers of guidance: helper text below the input explains what to enter, placeholder shows the expected format, and validation confirms correctness. Real-time validation for complex inputs. Submit enables only when the form is valid. Use when designing or reviewing any form, input field, or data entry UI.
44color-mode-and-theme
Choose light, dark, or combined color mode deliberately based on brand tone and user context. Offer a theme selector only when user control genuinely matters — enterprise tools, data-heavy UIs, or extended-use applications. Use when defining the base color palette, designing a design system, or deciding whether to build dark mode support.
43user-flows-and-guided-paths
Related features and tasks — such as purchase flows, onboarding, or multi-step configuration — should be designed as natural, guided paths that feel coherent and fit the product hierarchy. Use wizards for complex sequential tasks. Use when designing flows, onboarding, checkout, setup sequences, or any multi-step user journey.
43generate-ui-from-brand
Pipeline skill — turns a URL or DESIGN.md into a concrete UI structure with decisions already made. Extracts live design tokens, normalizes them into a semantic system, applies UX principles, and outputs an actionable UI spec. Use when building UI for an existing brand from scratch, auditing a design system, or refactoring visual inconsistency.
42micro-interactions
Micro-interactions are small, purposeful animations and responses that reward the user and make the interface feel alive — an animated icon, a satisfying toggle, a subtle reveal. Borrowed from the natural world, they add delight without distraction. Use when designing interactive components, success states, toggles, loaders, or any moment worth celebrating.
42