Newer
Older
<template>
<section id="socialVulnerabilityText">
<div
id="title"
class="text-container title-text"
>
<h3><p v-html="conclusionText.title"></p></h3>
<br>
<div id="text1" class="text-container">
<p v-html="conclusionText.paragraph1"></p>
</div>
<img src="@/assets/images/security-insecurity-transition.png" class="img" alt="rtistic rendering of an agricultural landscape with abundant water blending into a barren landscape where water is scarce."/>
<div id="text2" class="text-container">
<p v-html="conclusionText.paragraph2"></p>
</div>
</div>
</section>
</template>
<script setup>
import text from './../assets/text/text.js';
const conclusionText = text.components.socialVulnerabilityText;
</script>
<style scoped>
.text-container {
margin-bottom: 20px; /* Add some space between text containers */
}
#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: -180px;
}
</style>