diff --git a/gfi-ihk-2024/stories/components/contact/ContactComponent.js b/gfi-ihk-2024/stories/components/contact/ContactComponent.js index 836a29e..1f011b8 100644 --- a/gfi-ihk-2024/stories/components/contact/ContactComponent.js +++ b/gfi-ihk-2024/stories/components/contact/ContactComponent.js @@ -30,7 +30,7 @@ export const createContact = } const tb = createElement('div', ['text-box'], null, cp); - createElement('h6', [], data.name, tb); + createElement('h3', ['like-h6'], data.name, tb); createElement('p', [], data.copy, tb); const buttons = createElement('ul', ['contact-buttons'], null, tb); diff --git a/gfi-ihk-2024/stories/components/contact/contact.scss b/gfi-ihk-2024/stories/components/contact/contact.scss index 196805f..c9951d7 100644 --- a/gfi-ihk-2024/stories/components/contact/contact.scss +++ b/gfi-ihk-2024/stories/components/contact/contact.scss @@ -14,7 +14,7 @@ margin-top: var(--section-headline-margin); } - h5, h6 { + h5, h6, .like-h6 { margin-top: -0.3em; font-size: var(--font-size-copy); }