fix: increase decoration grid row gap for images that overflow cell bounds

rowGap 36→52 (40px visual gap between image rows), columnGap separate at 28.
The 52×52 buttons have 8px image overflow on each side so row gap needed to
account for 8+visual+8 = actual gap. Previous 36→20px visual was still tight.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-14 14:13:38 -04:00
parent 6ec0ab78d9
commit 362ccff85d
@@ -250,7 +250,8 @@ export function ProfileDecoration() {
style={{ style={{
display: 'flex', display: 'flex',
flexWrap: 'wrap', flexWrap: 'wrap',
gap: 36, columnGap: 28,
rowGap: 52,
paddingBottom: INSET, paddingBottom: INSET,
paddingLeft: INSET, paddingLeft: INSET,
paddingRight: INSET, paddingRight: INSET,