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;