diff --git a/src/organisms/Footer.svelte b/src/organisms/Footer.svelte index 7544f77..0cc6fdc 100644 --- a/src/organisms/Footer.svelte +++ b/src/organisms/Footer.svelte @@ -28,10 +28,9 @@ {/if} -
  • - A project by - - Cetrucflotte logo's +
  • + + Logo of Cetrucflotte
  • diff --git a/src/style/organisms/_footer.scss b/src/style/organisms/_footer.scss index 5426330..49e7d53 100644 --- a/src/style/organisms/_footer.scss +++ b/src/style/organisms/_footer.scss @@ -37,7 +37,7 @@ @include breakpoint (sm) { display: flex; - align-items: baseline; + align-items: center; } li { @@ -93,30 +93,20 @@ } } - // Collective - .cetrucflotte { - display: inline-flex; - align-items: center; - justify-content: center; - - span { - color: rgba(#fff, 0.4) - } - + // Made by + .by { img { display: block; - margin: 3px 0 0 12px; + height: 22px; + width: auto; + margin: 0 0 0; transition: transform 400ms $ease-quart; will-change: transform; - - @include breakpoint (sm) { - margin-left: 16px; - } } // Hover a:hover img { - transform: scale(1.04); + transform: scale(1.05); } } }