WIP PWA for Grain
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

style: add horizontal padding to content sections

Add consistent horizontal padding to author chip, engagement bar,
title/description, comments, and profile header for mobile.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+8 -8
+1 -1
src/components/organisms/grain-comment-list.js
··· 10 10 static styles = css` 11 11 :host { 12 12 display: block; 13 - padding: var(--space-sm) 0; 13 + padding: var(--space-sm); 14 14 } 15 15 .header { 16 16 font-size: var(--font-size-sm);
+1 -1
src/components/organisms/grain-engagement-bar.js
··· 12 12 display: flex; 13 13 align-items: center; 14 14 gap: var(--space-sm); 15 - padding: var(--space-sm) 0; 15 + padding: var(--space-sm); 16 16 } 17 17 `; 18 18
+1 -1
src/components/organisms/grain-profile-header.js
··· 10 10 static styles = css` 11 11 :host { 12 12 display: block; 13 - padding: var(--space-md) 0; 13 + padding: var(--space-md) var(--space-sm); 14 14 } 15 15 .top-row { 16 16 display: flex;