From 778fded037d11668f94f8416e6641934c6c0ec80 Mon Sep 17 00:00:00 2001 From: Florian Eisenmenger Date: Fri, 23 Feb 2024 15:23:37 +0100 Subject: [PATCH] Fix how to list Classname --- .../stories/components/howto-list/HowToListComponent.js | 2 +- gfi-ihk-2024/stories/components/howto-list/howto-list.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gfi-ihk-2024/stories/components/howto-list/HowToListComponent.js b/gfi-ihk-2024/stories/components/howto-list/HowToListComponent.js index 7a50845..f27e168 100644 --- a/gfi-ihk-2024/stories/components/howto-list/HowToListComponent.js +++ b/gfi-ihk-2024/stories/components/howto-list/HowToListComponent.js @@ -16,7 +16,7 @@ export const createHowToList = listItems.map((item) => { const li = createElement('li', [], null, ul); const a = createElement('a', [], null, li); - createElement('div', ['pictogram', item.icon], null, a); + createElement('div', ['icon-box', item.icon], null, a); createElement('h3', [], item.headline, a); createElement('p', [], item.text, a); createElement('span', [], item.more, a); diff --git a/gfi-ihk-2024/stories/components/howto-list/howto-list.scss b/gfi-ihk-2024/stories/components/howto-list/howto-list.scss index 1683044..826141c 100644 --- a/gfi-ihk-2024/stories/components/howto-list/howto-list.scss +++ b/gfi-ihk-2024/stories/components/howto-list/howto-list.scss @@ -59,7 +59,7 @@ text-decoration: underline; } img, - .pictogram { + .icon-box { position: absolute; left: -132px; top: 2px;