Skip to content

Commit df762d6

Browse files
committed
fix(docs): stack mascot + intro text on mobile
The homepage hero div uses `display:flex` without `flexWrap`, so on narrow viewports the mascot image and paragraph text stay side by side and the text gets squeezed. Adding `flexWrap:'wrap'` lets the image stack above the text on mobile. Assisted-by: Claude Code
1 parent dde46cf commit df762d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ displayed_sidebar: docsSidebar
66

77
import mascot from '@site/static/images/mellea_draft_logo_300.png';
88

9-
<div style={{display:'flex', alignItems:'center', gap:'2rem', marginBottom:'1rem'}}>
9+
<div style={{display:'flex', alignItems:'center', gap:'2rem', marginBottom:'1rem', flexWrap:'wrap'}}>
1010
<img src={mascot} alt="Mellea mascot" style={{width:'120px', flexShrink:0}} />
1111
<p style={{fontSize:'1.1rem', margin:0}}>
1212
Mellea helps you manage the unreliable part of every AI-powered pipeline: the LLM call itself.

0 commit comments

Comments
 (0)