Skip to content

Commit

Permalink
FIX home images
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaFM committed Nov 27, 2024
1 parent d462434 commit 9af0197
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
Binary file added assets/images/illustrations/404.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 11 additions & 4 deletions components/Landing/LandingKeyFeatures.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
data-aos="fade-up"
data-aos-duration="3000"
>
<CommunityImg />
<img src="~/assets/images/illustrations/404.png" alt="Community" />
</div>
</div>
<div class="col-lg-6 landingkey-features__box gap-3">
Expand Down Expand Up @@ -48,8 +48,6 @@

<script setup lang="ts">
import AOS from "aos";
const communityImg = "/images/illustrations/404.svg";
import CommunityImg from "../../public/images/illustrations/404.svg?component";
AOS.init();
</script>

Expand Down Expand Up @@ -124,8 +122,17 @@ AOS.init();
}
}
.welcome-header-image {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
.welcome-header-image svg {
width: 100%;
width: 100% !important;
height: auto !important;
max-height: 100% !important;
}
@media (max-width: 768px) {
Expand Down

0 comments on commit 9af0197

Please sign in to comment.