Skip to content

Commit

Permalink
Merge pull request #139 from earthrise-media/agmip-attribution
Browse files Browse the repository at this point in the history
Agmip attribution
  • Loading branch information
cameronkruse authored Apr 11, 2024
2 parents a9e9356 + 428cf33 commit 1784396
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions vacs-map-app/src/components/DataDisclaimer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const { copy } = storeToRefs(contentStore)
width: 100%;
display: flex;
padding: 0.3rem 2rem;
margin-bottom: 0.2rem;
}
.disclaimer {
Expand Down
3 changes: 3 additions & 0 deletions vacs-map-app/src/components/OverviewTop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
<NavigationButton :to="backRoute" class="mobile">
<img src="@/assets/img/back-arrow.svg" alt="" />
</NavigationButton>
<attributionLogo></attributionLogo>

</div>
</div>
</div>
Expand All @@ -37,6 +39,7 @@ import { storeToRefs } from 'pinia'
import { useContentStore } from '@/stores/siteContent'
import { useColorStore } from '@/stores/colors'
import NavigationButton from '@/components/NavigationButton.vue'
import attributionLogo from '@/components/attributionLogo.vue'
const linkCopied = ref(false)
const route = useRoute()
Expand Down
19 changes: 19 additions & 0 deletions vacs-map-app/src/components/attributionLogo.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<template>
<div class="attribution-logo">
<img src="@/assets/img/logos/agmip_eg_plotline_white.png" alt="attribution Logo" />
</div>
</template>

<style scoped>
.attribution-logo img {
width: 200px;
height: auto;
/* background-color: pink; */
}
@media only screen and (max-width: 850px) {
/* don't show */
.attribution-logo {
display: none;
}
}
</style>
2 changes: 1 addition & 1 deletion vacs-map-app/src/stores/siteContent.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1784396

Please sign in to comment.