Просмотр исходного кода

Fix how to list Classname

bugfix/microsites
Florian Eisenmenger 2 лет назад
Родитель
Сommit
778fded037
2 измененных файлов: 2 добавлений и 2 удалений
  1. +1
    -1
      gfi-ihk-2024/stories/components/howto-list/HowToListComponent.js
  2. +1
    -1
      gfi-ihk-2024/stories/components/howto-list/howto-list.scss

+ 1
- 1
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);


+ 1
- 1
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;


Загрузка…
Отмена
Сохранить