diff --git a/public/locales/en/home.json b/public/locales/en/home.json
index b61b92a8d83f..b181596cefa0 100644
--- a/public/locales/en/home.json
+++ b/public/locales/en/home.json
@@ -3,7 +3,7 @@
"header_actions_howToStart": "How to Start",
"news_title": "Recent updates",
"banner_title": "Introducing MarkdownEditor",
- "banner_content": "Markdown-editor combines two modes. It allows you to create and edit content in a convenient visual form while retaining full control over the underlying markup.
Test it on the code playground ✨.",
+ "banner_content": "Markdown-editor combines two modes. It allows you to create and edit content in a convenient visual form while retaining full control over the underlying markup.
Test it on the playground ✨.",
"news_items_item1": "We're thrilled to unveil Themer. Now you can easily customize our design system to your brand style and export your theme as a CSS file.",
"news_items_item2": "500⭐️ for our UIKit! We just wanted to say thanks for all the support and feedback we've been getting. There's more to come, so stay tuned!",
"news_items_item3": "We've released the PinInput component. You may need it to enter OTP or confirmation codes.",
diff --git a/public/locales/ru/home.json b/public/locales/ru/home.json
index ff60ce86f5b2..1dbfd2002769 100644
--- a/public/locales/ru/home.json
+++ b/public/locales/ru/home.json
@@ -3,7 +3,7 @@
"header_actions_howToStart": "С чего начать",
"news_title": "Новости",
"banner_title": "Представляем MarkdownEditor",
- "banner_content": "Markdown-редактор объединяет два режима. Это даёт возможность создавать и редактировать контент в удобной визуальной форме, не теряя контроля над исходной разметкой.
Попробуйте его в playground ✨.",
+ "banner_content": "Markdown-редактор объединяет два режима. Это даёт возможность создавать и редактировать контент в удобной визуальной форме, не теряя контроля над исходной разметкой.
Попробуйте в playground ✨.",
"news_items_item1": "Мы запустили новый раздел Themer. В нём вы можете легко адаптировать нашу дизайн-систему к своему бренду и экспортировать результат в CSS файл.",
"news_items_item2": "500⭐️ у UIKit! Просто хотим поблагодарить вас за поддержку и идеи. Впереди много нового, продолжайте следить за проектом!",
"news_items_item3": "Мы выложили компонент PinInput. Он может пригодиться для ввода OTP кодов или подтверждений.",
diff --git a/src/blocks/CustomHeader/CustomHeader.scss b/src/blocks/CustomHeader/CustomHeader.scss
index cc268428a8c4..367ddd7d23e7 100644
--- a/src/blocks/CustomHeader/CustomHeader.scss
+++ b/src/blocks/CustomHeader/CustomHeader.scss
@@ -51,6 +51,10 @@ $block: '.#{variables.$ns}custom-header';
border-radius: 24px;
background-color: rgba(37, 27, 37, 0.5);
backdrop-filter: blur(60px);
+
+ @media (max-width: map-get(pcVariables.$gridBreakpoints, 'lg') - 1) {
+ margin-top: 32px;
+ }
}
&__banner-image {
width: 100%;
diff --git a/src/components/Library/Library.tsx b/src/components/Library/Library.tsx
index a1ec82813c65..73e8836b5506 100644
--- a/src/components/Library/Library.tsx
+++ b/src/components/Library/Library.tsx
@@ -167,8 +167,7 @@ export const Library: React.FC = ({lib}) => {
{t('actions_storybook')}
) : null}
- {lib.config.id !== 'icons' &&
- availablePlaygrounds.includes(lib.config.id) ? (
+ {availablePlaygrounds.includes(lib.config.id) ? (