css-modules
Installation
SKILL.md
CSS Modules
Locally scoped CSS by generating unique class names at build time.
Quick Start
CSS Modules work out of the box in Vite, Next.js, and Create React App.
Create module file:
/* Button.module.css */
.button {
padding: 12px 24px;
border-radius: 8px;
border: none;
cursor: pointer;
}