From 9b613ff04c5ccfa013c10aca9d1f17931b773fe7 Mon Sep 17 00:00:00 2001 From: Preeti Aarya Date: Tue, 3 Jun 2025 12:07:43 +0530 Subject: [PATCH 01/63] fixes #276:[add consistent vertical spacing to tags on Blog page] --- src/components/TagsRenderer.jsx | 43 ++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 19 deletions(-) diff --git a/src/components/TagsRenderer.jsx b/src/components/TagsRenderer.jsx index 5ca5a1a5..4994770b 100644 --- a/src/components/TagsRenderer.jsx +++ b/src/components/TagsRenderer.jsx @@ -28,9 +28,10 @@ export default function TagsRenderer({ } return ( + - + {tagTypeHeading} @@ -38,25 +39,28 @@ export default function TagsRenderer({ {showAllTags ? sortedUniqueTags.map((tag) => ( - - - - - - )) + + + + + + )) : sortedUniqueTags.slice(0, 10).map((tag) => ( - - - - - - ))} + + + + + + ))} {sortedUniqueTags.length > 10 && ( - )} - + {showAllTags ? "Show Less Tags" : "Show All Tags"} + + + )} + ) } + From bdbc83110907cbf65791215888b13edb93672fc4 Mon Sep 17 00:00:00 2001 From: Preeti Aarya Date: Tue, 12 Aug 2025 17:55:28 +0530 Subject: [PATCH 04/63] refactor: update tag padding, margin, and remove round style --- src/components/TagsRenderer.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/TagsRenderer.jsx b/src/components/TagsRenderer.jsx index 8c72738f..c0ec27a3 100644 --- a/src/components/TagsRenderer.jsx +++ b/src/components/TagsRenderer.jsx @@ -51,9 +51,9 @@ export default function TagsRenderer({ )) : sortedUniqueTags.slice(0, 10).map((tag) => ( + // pad={{ vertical: "xsmall" }} + // round="xsmall" + margin={{ bottom: "small" }}> 10 && (