From 303a4d8bbbe5909fd37ffab7d838507d515ee1ba Mon Sep 17 00:00:00 2001 From: vadim Date: Wed, 16 Apr 2025 12:14:33 +0200 Subject: [PATCH] fix: Adjust markdown lists margin (#40273) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description Prevents overflowing up to hundreds. ## Automation /ok-to-test tags="@tag.Sanity" ### :mag: Cypress test results > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: > Commit: eb22618f3c269fb34711555d5c8e2b1312ead7b6 > Cypress dashboard. > Tags: `@tag.Sanity` > Spec: >
Wed, 16 Apr 2025 10:10:20 UTC ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No ## Summary by CodeRabbit - **Style** - Improved indentation for list items in markdown content for better readability. --- .../widgets/src/components/Markdown/src/styles.module.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/client/packages/design-system/widgets/src/components/Markdown/src/styles.module.css b/app/client/packages/design-system/widgets/src/components/Markdown/src/styles.module.css index 22e568e7dc..e3518d23b6 100644 --- a/app/client/packages/design-system/widgets/src/components/Markdown/src/styles.module.css +++ b/app/client/packages/design-system/widgets/src/components/Markdown/src/styles.module.css @@ -79,14 +79,14 @@ li { margin-bottom: var(--inner-spacing-2); - margin-left: 0.5em; + margin-left: 1em; position: relative; list-style-type: auto; letter-spacing: -0.02em; } > :is(ul, ol) > li { - margin-left: 1em; + margin-left: 2em; } a {