dropdown-menu

Installation
SKILL.md

Dropdown Menu Pattern

Build dropdown menus that work correctly in list/card contexts, handling z-index stacking and click-outside dismissal properly.

Why This Pattern?

Dropdown menus in list items have three common bugs:

  1. Clipped by parent's overflow-hidden - dropdown gets cut off
  2. Covered by sibling cards - z-index doesn't help across stacking contexts
  3. Double-toggle on trigger click - menu closes then reopens immediately

This pattern solves all three.

Core Implementation

"use client";
Related skills
Installs
4
GitHub Stars
4
First Seen
Feb 21, 2026