Responsive email
Skill Dragoon0x/everything-design-taste/skills/responsive-email
Responsive email design, mobile email optimization, and email-specific media queries.From its SKILL.md
npx -y skills add Dragoon0x/everything-design-taste --skill responsive-emailAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.1 KB, 217 tokens by cl100k_base, as published. Nobody here has run it
Responsive Email Design
Strategy
- Design mobile-first (most emails opened on mobile)
- Single column layout works everywhere
- Stack multi-column content on small screens
Fluid vs Responsive
- Fluid: Percentage widths, scales with viewport. Simpler, broader support.
- Responsive: Media queries for breakpoints. Better control, less support.
Mobile Optimization
- Minimum font size: 16px (prevents iOS zoom)
- Minimum tap target: 44x44px
- CTA button: full-width on mobile
- Reduce padding on mobile (more content visible)
- Hide non-essential content on mobile
- Preheader text: optimize for mobile inbox preview
Media Query Support
@media screen and (max-width: 600px) {
.column { width: 100% !important; }
.mobile-hidden { display: none !important; }
.mobile-full-width { width: 100% !important; }
}
Note: Gmail App supports media queries. Outlook does not.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.