Bläddra i källkod

Fix how to list Classname

bugfix/microsites
Florian Eisenmenger 2 år sedan
förälder
incheckning
778fded037
2 ändrade filer med 2 tillägg och 2 borttagningar
  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 Visa fil

@@ -16,7 +16,7 @@ export const createHowToList =
listItems.map((item) => { listItems.map((item) => {
const li = createElement('li', [], null, ul); const li = createElement('li', [], null, ul);
const a = createElement('a', [], null, li); 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('h3', [], item.headline, a);
createElement('p', [], item.text, a); createElement('p', [], item.text, a);
createElement('span', [], item.more, a); createElement('span', [], item.more, a);


+ 1
- 1
gfi-ihk-2024/stories/components/howto-list/howto-list.scss Visa fil

@@ -59,7 +59,7 @@
text-decoration: underline; text-decoration: underline;
} }
img, img,
.pictogram {
.icon-box {
position: absolute; position: absolute;
left: -132px; left: -132px;
top: 2px; top: 2px;


Laddar…
Avbryt
Spara