Ver código fonte

logo wall marketing header fixes

master
FlorianEisenmenger 4 meses atrás
pai
commit
c3b56825fc
3 arquivos alterados com 7 adições e 2 exclusões
  1. +3
    -1
      gfi-ihk-2024/stories/components/logo-wall/LogoWallComponent.js
  2. +3
    -0
      gfi-ihk-2024/stories/components/logo-wall/logo-wall.scss
  3. +1
    -1
      gfi-ihk-2024/stories/sections/marketingheader/marketingheader.scss

+ 3
- 1
gfi-ihk-2024/stories/components/logo-wall/LogoWallComponent.js Ver arquivo

@@ -39,7 +39,9 @@ export const createLogoWall = ({
if (logos && logos.length > 0) {
logos.forEach(logo => {
const logoWrapper = createElement('div', ['logo-item'], null, logoGrid);
const logoImg = createElement('img', [], null, logoWrapper);
const logoLink = createElement('a', [], null, logoWrapper);
logoLink.href = "#";
const logoImg = createElement('img', [], null, logoLink);
logoImg.src = logo.src;
logoImg.alt = logo.alt;
});


+ 3
- 0
gfi-ihk-2024/stories/components/logo-wall/logo-wall.scss Ver arquivo

@@ -27,6 +27,7 @@
grid-template-columns: repeat(3, 1fr);
}

a,
.logo-item {
height: 5rem;
max-width: 15rem;
@@ -36,7 +37,9 @@
@media (max-width: 600px) {
height: 2.5rem;
}
}

.logo-item {
img {
max-width: 100%;
max-height: 100%;


+ 1
- 1
gfi-ihk-2024/stories/sections/marketingheader/marketingheader.scss Ver arquivo

@@ -749,7 +749,7 @@ section.marketingheader{
padding: 0 var(--container-padding);
max-width: 100%;
margin: 0 auto;
@media screen and (min-width:901px) {
@media screen and (min-width:1000px) {
position: absolute;
*{
color:white;


Carregando…
Cancelar
Salvar