Explorar el Código

Fix how to list Classname

bugfix/microsites
Florian Eisenmenger hace 2 años
padre
commit
778fded037
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  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 Ver fichero

@@ -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 Ver fichero

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


Cargando…
Cancelar
Guardar