Newer
Older
<template>
<section id="socialVulnerabilityText">
<div
id="title"
class="text-container title-text"
>
<h3 v-html="t('text.components.socialVulnerabilityText.title')"></h3>
<p v-html="t('text.components.socialVulnerabilityText.paragraph1')"></p>
<img src="@/assets/images/original_images/security-insecurity-transition.png" loading="lazy" class="img" alt="Artistic rendering of an agricultural landscape with abundant water blending into a barren landscape where water is scarce."/>
<p v-html="t('text.components.socialVulnerabilityText.paragraph2')"></p>
</div>
</div>
</section>
</template>
<script setup>
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
</script>
<style scoped>
.text-container {
}
#socialVulnerabilityText img {
display: block;
margin: 20px auto; /* Center the images and add space around them */
}
</style>
<style lang="scss">
#intersectionality-tooltip {
z-index: 99;
}
#environmental-justice-tooltip {
margin-left: -160px;