Skip to content

Commit

Permalink
Merge branch 'main' into feature/explorer-1-font-organization
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle committed Jul 30, 2024
2 parents 0852661 + 28b9862 commit 6d6a83d
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions packages/vue/src/components/TheFooter/TheFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<div class="footer-extras lg:col-span-3 col-span-12">
<!-- email sign up -->
<div class="text-subtitle text-blue edu:text-white lg:mb-5 mb-3">
Get the Latest from JPL
{{ `Get the Latest from JPL ${themeStore.isEdu ? 'Education' : ''} ` }}
</div>
<TheFooterSignUp class="lg:mb-10 mb-8" />
<!-- social media -->
Expand Down Expand Up @@ -101,9 +101,7 @@
<div class="3xl:px-0 container px-4 mx-auto">
<div v-if="data && data.relatedNasaSites">
<div class="text-subtitle text-blue edu:text-white mb-5">
<template v-if="themeStore.theme === 'ThemeEdu'">
Related NASA Education Sites
</template>
<template v-if="themeStore.isEdu"> Related NASA Education Sites </template>
<template v-else> Related NASA Sites </template>
</div>
<div class="auto-col-4">
Expand Down Expand Up @@ -148,9 +146,9 @@
>
<div
v-if="commitSha"
class="lg:inline-block lg:mb-0 block px-3 mb-2"
class="lg:inline-block lg:mb-0 block pr-4 mb-2"
>
<span class="text-gray-light font-bold">Version:</span>
<span class="text-gray-light font-bold inline-block pr-1">Version:</span>
<span>{{ commitSha }}</span>
</div>
<div
Expand All @@ -159,7 +157,7 @@
class="lg:inline-block lg:mb-0 block mb-2"
:class="{ 'ml-5': index !== 0 }"
>
<span class="font-bold">{{ item.label }}:</span>
<span class="font-bold inline-block pr-1">{{ item.label }}:</span>
<span>{{ item.text }}</span>
</div>
</div>
Expand All @@ -168,7 +166,7 @@
v-if="commitSha != null"
class="lg:inline-block lg:mb-0 block px-3 mb-2"
>
<span class="text-gray-light font-bold">Version:</span>
<span class="text-gray-light font-bold inline-block pr-1">Version:</span>
<span>{{ commitSha }}</span>
</div>
</div>
Expand Down

0 comments on commit 6d6a83d

Please sign in to comment.