From 25ff8fbbea1d221c45dc69102b5d965b888d09da Mon Sep 17 00:00:00 2001 From: Rivka Ungar Date: Wed, 15 May 2024 13:56:46 +0300 Subject: [PATCH 1/2] fix(Storybook Docs): typo (#2119) --- .../components/ResponsiveList/__stories__/ResponsiveList.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/components/ResponsiveList/__stories__/ResponsiveList.mdx b/packages/core/src/components/ResponsiveList/__stories__/ResponsiveList.mdx index b3c7905c39..6d3c3964a7 100644 --- a/packages/core/src/components/ResponsiveList/__stories__/ResponsiveList.mdx +++ b/packages/core/src/components/ResponsiveList/__stories__/ResponsiveList.mdx @@ -12,7 +12,7 @@ import * as ResponsiveListStories from "./ResponsiveList.stories"; ## Overview -ResponsiveList is a helper component, it is in charge of "moving" elements when there container is overflowing. It moves them to a list at the end of the container. +ResponsiveList is a helper component, it is in charge of "moving" elements when their container is overflowing. It moves them to a list at the end of the container. (the blue handle is a resize handler - not part of the component) From 337975b97de2120ed52b70a99ceaddb208015bbe Mon Sep 17 00:00:00 2001 From: Tal Koren Date: Wed, 15 May 2024 14:25:56 +0300 Subject: [PATCH 2/2] fix(Typography): make anchor style apply only to direct child (#2115) --- packages/core/src/components/Typography/Typography.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/components/Typography/Typography.module.scss b/packages/core/src/components/Typography/Typography.module.scss index 555f00191e..0100086c11 100644 --- a/packages/core/src/components/Typography/Typography.module.scss +++ b/packages/core/src/components/Typography/Typography.module.scss @@ -3,7 +3,7 @@ .typography { // TODO: remove anchor styles - a { + > a { text-decoration: none; color: var(--link-color); @include focus-style();